diff options
author | Damien Miller <djm@mindrot.org> | 2003-01-22 06:21:02 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-01-22 06:21:02 +0100 |
commit | e9b7d720c8de6c293a3632c1fbf02cfa9c542923 (patch) | |
tree | 8c085413dcda06f0be78a76d05e21d49a958b9a8 /auth-passwd.c | |
parent | - (djm) Reorganise PAM & SIA password handling to eliminate some common code (diff) | |
download | openssh-e9b7d720c8de6c293a3632c1fbf02cfa9c542923.tar.xz openssh-e9b7d720c8de6c293a3632c1fbf02cfa9c542923.zip |
unbreak for PAM case
Diffstat (limited to 'auth-passwd.c')
-rw-r--r-- | auth-passwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c index cbf093f0d..d419fa0d2 100644 --- a/auth-passwd.c +++ b/auth-passwd.c @@ -92,8 +92,8 @@ extern char *aixloginmsg; int auth_password(Authctxt *authctxt, const char *password) { -#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA) struct passwd * pw = authctxt->pw; +#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA) char *encrypted_password; char *pw_password; char *salt; |