Bugzilla – Attachment 351 Details for
Bug 611
Unnecessary authentication attempt in auth2-none.c creates delay
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to fix the issue
openssh-nodelay.diff (text/plain), 529 bytes, created by
Matthew Sachs
on 2003-07-01 10:34:13 AEST
(
hide
)
Description:
Patch to fix the issue
Filename:
MIME Type:
Creator:
Matthew Sachs
Created:
2003-07-01 10:34:13 AEST
Size:
529 bytes
patch
obsolete
>diff -urN openssh-3.6.1p2/auth2-none.c openssh-3.6.1p2.patched/auth2-none.c >--- openssh-3.6.1p2/auth2-none.c 2003-04-29 05:12:08.000000000 -0400 >+++ openssh-3.6.1p2.patched/auth2-none.c 2003-06-30 20:08:24.000000000 -0400 >@@ -100,7 +100,10 @@ > if (check_nt_auth(1, authctxt->pw) == 0) > return(0); > #endif >- return PRIVSEP(auth_password(authctxt, "")) && authctxt->valid; >+ if(options.permit_empty_passwd) >+ return PRIVSEP(auth_password(authctxt, "")) && authctxt->valid; >+ else >+ return(0); > } > > Authmethod method_none = {
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
Actions:
View
|
Diff
Attachments on
bug 611
: 351