Bugzilla – Attachment 1308 Details for
Bug 1322
pam_end() is not called if authentication fails, which breaks pam-abl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch by Sandro Wefel from Debian bug #405041 (don't use as per djm's comments)
openssh-bug1322.patch (text/plain), 725 bytes, created by
Darren Tucker
on 2007-06-18 10:16:43 AEST
(
hide
)
Description:
Patch by Sandro Wefel from Debian bug #405041 (don't use as per djm's comments)
Filename:
MIME Type:
Creator:
Darren Tucker
Created:
2007-06-18 10:16:43 AEST
Size:
725 bytes
patch
obsolete
>Index: session.c >=================================================================== >RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/session.c,v >retrieving revision 1.351 >diff -u -p -r1.351 session.c >--- session.c 26 Mar 2007 16:35:28 -0000 1.351 >+++ session.c 17 Jun 2007 23:58:59 -0000 >@@ -2478,7 +2478,7 @@ do_cleanup(Authctxt *authctxt) > return; > called = 1; > >- if (authctxt == NULL || !authctxt->authenticated) >+ if (authctxt == NULL) > return; > #ifdef KRB5 > if (options.kerberos_ticket_cleanup && >@@ -2497,6 +2497,8 @@ do_cleanup(Authctxt *authctxt) > sshpam_thread_cleanup(); > } > #endif >+ if (!authctxt->authenticated) >+ return; > > /* remove agent socket */ > auth_sock_cleanup_proc(authctxt->pw);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
djm
:
ok-
Actions:
View
|
Diff
Attachments on
bug 1322
:
1307
|
1308
|
1325
|
1339
|
1342