diff options
author | Damien Miller <djm@mindrot.org> | 2003-09-18 18:26:48 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-09-18 18:26:48 +1000 |
commit | aa9a76fe4c128cb119f21db65cbf9e82cd48c876 (patch) | |
tree | efb80effafc970f607aa2fe2a44fbe3ab01a8fa5 | |
parent | ade1cee573c0897cd08987dc14e23a555898cd12 (diff) |
- (djm) Bug #652: Fix empty password auth
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | auth-passwd.c | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20030918 | ||
2 | - (djm) Bug #652: Fix empty password auth | ||
3 | |||
1 | 20030917 | 4 | 20030917 |
2 | - (djm) OpenBSD Sync | 5 | - (djm) OpenBSD Sync |
3 | - markus@cvs.openbsd.org 2003/09/16 21:02:40 | 6 | - markus@cvs.openbsd.org 2003/09/16 21:02:40 |
@@ -1115,4 +1118,4 @@ | |||
1115 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1118 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1116 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1119 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1117 | 1120 | ||
1118 | $Id: ChangeLog,v 1.2994.2.6 2003/09/16 21:35:09 djm Exp $ | 1121 | $Id: ChangeLog,v 1.2994.2.7 2003/09/18 08:26:48 djm Exp $ |
diff --git a/auth-passwd.c b/auth-passwd.c index 95cc134de..971c7ba19 100644 --- a/auth-passwd.c +++ b/auth-passwd.c | |||
@@ -143,7 +143,7 @@ auth_password(Authctxt *authctxt, const char *password) | |||
143 | char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd; | 143 | char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd; |
144 | 144 | ||
145 | /* Check for users with no password. */ | 145 | /* Check for users with no password. */ |
146 | if (strcmp(pw_password, "") == 0 && strcmp(pw->pw_passwd, "") == 0) | 146 | if (strcmp(pw_password, "") == 0 && strcmp(password, "") == 0) |
147 | return ok; | 147 | return ok; |
148 | else { | 148 | else { |
149 | /* Encrypt the candidate password using the proper salt. */ | 149 | /* Encrypt the candidate password using the proper salt. */ |