bugzilla-daemon at mindrot.org
2002-Mar-27 15:05 UTC
[Bug 191] compilation faills in auth1.c:392 `pw' undeclared when USE_PAM is on
http://bugzilla.mindrot.org/show_bug.cgi?id=191 mouring at eviladmin.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME ------- Additional Comments From mouring at eviladmin.org 2002-03-28 02:05 ------- I'm using the CVS source and it works fine for me under Redhat 7.0 The area of code you are refering to has the 'pw' defined at the start of the do_authentification(void). - Ben ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
bugzilla-daemon at mindrot.org
2002-Mar-27 16:13 UTC
[Bug 191] compilation faills in auth1.c:392 `pw' undeclared when USE_PAM is on
http://bugzilla.mindrot.org/show_bug.cgi?id=191 markus at openbsd.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | ------- Additional Comments From markus at openbsd.org 2002-03-28 03:13 ------- Index: auth1.c ==================================================================RCS file: /cvs/openssh_cvs/auth1.c,v retrieving revision 1.64 diff -u -r1.64 auth1.c --- auth1.c 22 Mar 2002 03:04:11 -0000 1.64 +++ auth1.c 27 Mar 2002 15:58:51 -0000 @@ -389,7 +389,7 @@ use_privsep ? " [net]" : ""); #ifdef USE_PAM - start_pam(pw == NULL ? "NOUSER" : user); + start_pam(authctxt->pw == NULL ? "NOUSER" : user); #endif /* ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
bugzilla-daemon at mindrot.org
2002-Mar-27 16:51 UTC
[Bug 191] compilation faills in auth1.c:392 `pw' undeclared when USE_PAM is on
http://bugzilla.mindrot.org/show_bug.cgi?id=191 mouring at eviladmin.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED ------- Additional Comments From mouring at eviladmin.org 2002-03-28 03:51 ------- I had an odd version checked out on this test machine. Just committed fix. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.