- (bal) Minor cygwin patch to auth1.c. Suggested by djm.

This commit is contained in:
Ben Lindstrom 2001-01-19 06:10:29 +00:00
parent b100ec9542
commit 5dc81502cb
2 changed files with 4 additions and 4 deletions

View File

@ -20,6 +20,7 @@
- (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
to fix NULL pointer deref and fake authloop breakage in PAM code.
- (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
- (bal) Minor cygwin patch to auth1.c. Suggested by djm.
20010118
- (bal) Super Sized OpenBSD Resync

View File

@ -329,13 +329,12 @@ do_authloop(Authctxt *authctxt)
(int)pw->pw_uid);
authenticated = 0;
}
#endif
#else
/* Special handling for root */
if (authenticated && authctxt->pw->pw_uid == 0 && !auth_root_allowed())
authenticated = 0;
#ifdef USE_PAM /* ISSUE: Right place? */
#endif
#ifdef USE_PAM
if (authenticated && !do_pam_account(pw->pw_name, client_user))
authenticated = 0;
#endif