From dd466ff84c8b8293a9eeea3637d61262fb7c4810 Mon Sep 17 00:00:00 2001 From: mouring Date: Wed, 27 Mar 2002 16:50:03 +0000 Subject: [PATCH] - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by kent@lysator.liu.se --- ChangeLog | 4 ++++ auth1.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6641d26e..b7291d2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20020327 + - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by + kent@lysator.liu.se + 20020325 - (stevesk) import OpenBSD as "openbsd-compat/tree.h" - (bal) OpenBSD CVS Sync diff --git a/auth1.c b/auth1.c index 8553bfa2..4f33fa87 100644 --- a/auth1.c +++ b/auth1.c @@ -389,7 +389,7 @@ do_authentication(void) use_privsep ? " [net]" : ""); #ifdef USE_PAM - start_pam(pw == NULL ? "NOUSER" : user); + start_pam(authctxt->pw == NULL ? "NOUSER" : user); #endif /* -- 2.45.1