summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-14 10:27:09 +1000
committerDamien Miller <djm@mindrot.org>2003-05-14 10:27:09 +1000
commit1a27a1ee8c0ddd6f390feade92259c001f36530f (patch)
tree3b1903292c708e6665fda8489cd39bee4a2dd178 /auth1.c
parent75d3b05c57e8284389f77d6105ebc29d00875b17 (diff)
- (djm) Bug #117: Don't lie to PAM about username
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth1.c b/auth1.c
index 5086a47c3..45cc2d6f0 100644
--- a/auth1.c
+++ b/auth1.c
@@ -413,7 +413,7 @@ do_authentication(void)
413 use_privsep ? " [net]" : ""); 413 use_privsep ? " [net]" : "");
414 414
415#ifdef USE_PAM 415#ifdef USE_PAM
416 PRIVSEP(start_pam(authctxt->pw == NULL ? "NOUSER" : user)); 416 PRIVSEP(start_pam(user));
417#endif 417#endif
418 418
419 /* 419 /*