summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authormouring <mouring>2001-01-19 06:10:29 +0000
committermouring <mouring>2001-01-19 06:10:29 +0000
commit4ed651cf5b90fd253d58061312f21fe40ccad96f (patch)
treefa3a0c8bfc458aaf74184a63f63dfb751bd138ad /auth1.c
parent36245bd72a905ec43214a1981094317ef8e01253 (diff)
downloadopenssh-4ed651cf5b90fd253d58061312f21fe40ccad96f.tar.gz
- (bal) Minor cygwin patch to auth1.c. Suggested by djm.
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/auth1.c b/auth1.c
index e990ff57..2df2de89 100644
--- a/auth1.c
+++ b/auth1.c
@@ -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