Bugzilla – Attachment 2502 Details for
Bug 2245
Multiple USER_LOGIN messages when linux audit support is enabled on bad login
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
don't use (invalid user)
file_2245.txt (text/plain), 628 bytes, created by
Petr Lautrbach
on 2014-11-05 01:19:21 AEDT
(
hide
)
Description:
don't use (invalid user)
Filename:
MIME Type:
Creator:
Petr Lautrbach
Created:
2014-11-05 01:19:21 AEDT
Size:
628 bytes
patch
obsolete
>--- a/audit.c >+++ b/audit.c >@@ -71,13 +71,10 @@ audit_classify_auth(const char *method) > const char * > audit_username(void) > { >- static const char unknownuser[] = "(unknown user)"; >- static const char invaliduser[] = "(invalid user)"; >+ static const char unknownuser[] = "(unknown user)"; > >- if (the_authctxt == NULL || the_authctxt->user == NULL) >+ if (the_authctxt == NULL || the_authctxt->user == NULL || !the_authctxt->valid) > return (unknownuser); >- if (!the_authctxt->valid) >- return (invaliduser); > return (the_authctxt->user); > }
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 2245
:
2501
| 2502