summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--auth2.c8
2 files changed, 5 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 236b00753..acd6306f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
4 - (stevesk) configure and cpp __FUNCTION__ gymnastics to handle nielsisms 4 - (stevesk) configure and cpp __FUNCTION__ gymnastics to handle nielsisms
5 - (stevesk) [monitor_fdpass.c] support for access rights style file 5 - (stevesk) [monitor_fdpass.c] support for access rights style file
6 descriptor passing 6 descriptor passing
7 - (stevesk) [auth2.c] merge cleanup/sync
7 8
820020321 920020321
9 - (bal) OpenBSD CVS Sync 10 - (bal) OpenBSD CVS Sync
@@ -7998,4 +7999,4 @@
7998 - Wrote replacements for strlcpy and mkdtemp 7999 - Wrote replacements for strlcpy and mkdtemp
7999 - Released 1.0pre1 8000 - Released 1.0pre1
8000 8001
8001$Id: ChangeLog,v 1.1970 2002/03/22 19:32:53 stevesk Exp $ 8002$Id: ChangeLog,v 1.1971 2002/03/22 20:43:05 stevesk Exp $
diff --git a/auth2.c b/auth2.c
index 98e1eda1a..3377fde8b 100644
--- a/auth2.c
+++ b/auth2.c
@@ -184,14 +184,12 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt)
184 184
185 if (authctxt->attempt++ == 0) { 185 if (authctxt->attempt++ == 0) {
186 /* setup auth context */ 186 /* setup auth context */
187 struct passwd *pw = NULL; 187 authctxt->pw = PRIVSEP(getpwnamallow(user));
188 pw = PRIVSEP(getpwnamallow(user)); 188 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
189 if (pw && strcmp(service, "ssh-connection")==0) {
190 authctxt->pw = pwcopy(pw);
191 authctxt->valid = 1; 189 authctxt->valid = 1;
192 debug2("input_userauth_request: setting up authctxt for %s", user); 190 debug2("input_userauth_request: setting up authctxt for %s", user);
193#ifdef USE_PAM 191#ifdef USE_PAM
194 start_pam(pw->pw_name); 192 start_pam(authctxt->pw->pw_name);
195#endif 193#endif
196 } else { 194 } else {
197 log("input_userauth_request: illegal user %s", user); 195 log("input_userauth_request: illegal user %s", user);