summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-16 14:17:59 +1100
committerDamien Miller <djm@mindrot.org>2001-02-16 14:17:59 +1100
commitc83de6db41324ef18cef42e1c8666428c02e92ca (patch)
tree4b0b94db68111818a736f81d4b2122162bad67e2
parent8fa2bda561b7ce6bb79eff8023198e97580b089d (diff)
KNF
-rw-r--r--auth2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth2.c b/auth2.c
index 0a627bf80..88fca2c9b 100644
--- a/auth2.c
+++ b/auth2.c
@@ -235,7 +235,8 @@ input_userauth_request(int type, int plen, void *ctxt)
235 authenticated = 0; 235 authenticated = 0;
236 236
237#ifdef USE_PAM 237#ifdef USE_PAM
238 if (authenticated && authctxt->user && !do_pam_account(authctxt->user, NULL)) 238 if (authenticated && authctxt->user && !do_pam_account(authctxt->user,
239 NULL))
239 authenticated = 0; 240 authenticated = 0;
240#endif /* USE_PAM */ 241#endif /* USE_PAM */
241 242