diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-27 16:50:03 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-27 16:50:03 +0000 |
commit | 53f1830d6a31f646a2476ef5e1d3a7f9c5706d0b (patch) | |
tree | 92b67dcdbc093b4a3032d3933d521164e4632919 | |
parent | 28364ecf4536bbeb1f1d3564de61489ec80f4b93 (diff) |
- (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by
kent@lysator.liu.se
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | auth1.c | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20020327 | ||
2 | - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by | ||
3 | kent@lysator.liu.se | ||
4 | |||
1 | 20020325 | 5 | 20020325 |
2 | - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h" | 6 | - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h" |
3 | - (bal) OpenBSD CVS Sync | 7 | - (bal) OpenBSD CVS Sync |
@@ -8060,4 +8064,4 @@ | |||
8060 | - Wrote replacements for strlcpy and mkdtemp | 8064 | - Wrote replacements for strlcpy and mkdtemp |
8061 | - Released 1.0pre1 | 8065 | - Released 1.0pre1 |
8062 | 8066 | ||
8063 | $Id: ChangeLog,v 1.1991 2002/03/26 03:42:20 mouring Exp $ | 8067 | $Id: ChangeLog,v 1.1992 2002/03/27 16:50:03 mouring Exp $ |
@@ -389,7 +389,7 @@ do_authentication(void) | |||
389 | use_privsep ? " [net]" : ""); | 389 | use_privsep ? " [net]" : ""); |
390 | 390 | ||
391 | #ifdef USE_PAM | 391 | #ifdef USE_PAM |
392 | start_pam(pw == NULL ? "NOUSER" : user); | 392 | start_pam(authctxt->pw == NULL ? "NOUSER" : user); |
393 | #endif | 393 | #endif |
394 | 394 | ||
395 | /* | 395 | /* |