summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-05-06 23:06:08 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-05-06 23:06:08 +0000
commit532bbdb99b23e8ff05faff3eeee7345dae2a541b (patch)
treec8793412df44fa8ea342e97ca1eaa73f4d0caae9 /auth-passwd.c
parent804357ace9afe63c402bb4bfc09d974b82a42d70 (diff)
- (bal) Fixed auth-passwd.c to resolve PermitEmptyPassword issue
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index 58c113649..896f1c263 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -36,7 +36,7 @@
36 */ 36 */
37 37
38#include "includes.h" 38#include "includes.h"
39RCSID("$OpenBSD: auth-passwd.c,v 1.24 2002/03/04 12:43:06 markus Exp $"); 39RCSID("$OpenBSD: auth-passwd.c,v 1.25 2002/05/06 23:00:59 mouring Exp $");
40 40
41#include "packet.h" 41#include "packet.h"
42#include "log.h" 42#include "log.h"
@@ -90,11 +90,11 @@ int
90auth_password(Authctxt *authctxt, const char *password) 90auth_password(Authctxt *authctxt, const char *password)
91{ 91{
92#if defined(USE_PAM) 92#if defined(USE_PAM)
93 if (*password == '\0' && options.permit_empty_passwd == 0) 93 if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
94 return 0; 94 return 0;
95 return auth_pam_password(authctxt, password); 95 return auth_pam_password(authctxt, password);
96#elif defined(HAVE_OSF_SIA) 96#elif defined(HAVE_OSF_SIA)
97 if (*password == '\0' && options.permit_empty_passwd == 0) 97 if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
98 return 0; 98 return 0;
99 return auth_sia_password(authctxt, password); 99 return auth_sia_password(authctxt, password);
100#else 100#else
@@ -131,7 +131,7 @@ auth_password(Authctxt *authctxt, const char *password)
131 */ 131 */
132 if (!is_winnt) 132 if (!is_winnt)
133#endif 133#endif
134 if (*password == '\0' && options.permit_empty_passwd == 0) 134 if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
135 return 0; 135 return 0;
136#ifdef KRB5 136#ifdef KRB5
137 if (options.kerberos_authentication == 1) { 137 if (options.kerberos_authentication == 1) {