summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-05-08 12:18:26 +1000
committerDamien Miller <djm@mindrot.org>2002-05-08 12:18:26 +1000
commit52910ddc664ec7ae8148cff1b796d9b27ac6924f (patch)
treeb0e395633a29bc1d366e845c13c75b32c294292f /auth-passwd.c
parent532bbdb99b23e8ff05faff3eeee7345dae2a541b (diff)
- (djm) Unbreak auth-passwd.c for PAM and SIA
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index 896f1c263..348ab9ddb 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -89,6 +89,7 @@ extern ServerOptions options;
89int 89int
90auth_password(Authctxt *authctxt, const char *password) 90auth_password(Authctxt *authctxt, const char *password)
91{ 91{
92 struct passwd * pw = authctxt->pw;
92#if defined(USE_PAM) 93#if defined(USE_PAM)
93 if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0) 94 if (*pw->pw_passwd == '\0' && options.permit_empty_passwd == 0)
94 return 0; 95 return 0;
@@ -98,7 +99,6 @@ auth_password(Authctxt *authctxt, const char *password)
98 return 0; 99 return 0;
99 return auth_sia_password(authctxt, password); 100 return auth_sia_password(authctxt, password);
100#else 101#else
101 struct passwd * pw = authctxt->pw;
102 char *encrypted_password; 102 char *encrypted_password;
103 char *pw_password; 103 char *pw_password;
104 char *salt; 104 char *salt;