summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2002-04-02 03:24:56 +0000
committerKevin Steves <stevesk@pobox.com>2002-04-02 03:24:56 +0000
commit38c4a28a7e9911b9e3b38a6ad6c9db9cb57cc9f2 (patch)
treeb92f274f78f4c94d05465ab424447f247b185197 /auth1.c
parentbd1901b7dc7ba80aae9aa3d6e6be3fb5e8aedb61 (diff)
- (stevesk) [auth1.c] fix password auth for protocol 1 when
!USE_PAM && !HAVE_OSF_SIA; merge issue.
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/auth1.c b/auth1.c
index 4f33fa878..89ae47df2 100644
--- a/auth1.c
+++ b/auth1.c
@@ -253,6 +253,7 @@ do_authloop(Authctxt *authctxt)
253 /* Do SIA auth with password */ 253 /* Do SIA auth with password */
254 authenticated = auth_sia_password(authctxt->user, 254 authenticated = auth_sia_password(authctxt->user,
255 password); 255 password);
256#else /* !USE_PAM && !HAVE_OSF_SIA */
256 /* Try authentication with the password. */ 257 /* Try authentication with the password. */
257 authenticated = PRIVSEP(auth_password(authctxt, password)); 258 authenticated = PRIVSEP(auth_password(authctxt, password));
258#endif /* USE_PAM */ 259#endif /* USE_PAM */