diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-02-04 05:19:44 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-02-04 05:19:44 +0100 |
commit | 40d9a63788e66d3d330fbf76fbdfd9cc437cb334 (patch) | |
tree | 78576e590ca8edda52bebb5434602e2de078b75e /auth.c | |
parent | - (dtucker) [monitor.c] Permit INVALID_USER audit events from slave too. (diff) | |
download | openssh-40d9a63788e66d3d330fbf76fbdfd9cc437cb334.tar.xz openssh-40d9a63788e66d3d330fbf76fbdfd9cc437cb334.zip |
- (dtucker) [auth.c] Fix parens in audit log check.
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -247,8 +247,8 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info) #ifdef CUSTOM_FAILED_LOGIN if (authenticated == 0 && !authctxt->postponed && (strcmp(method, "password") == 0 || - strncmp(method, "keyboard-interactive", 20) == 0) || - strcmp(method, "challenge-response") == 0) + strncmp(method, "keyboard-interactive", 20) == 0 || + strcmp(method, "challenge-response") == 0)) record_failed_login(authctxt->user, get_canonical_hostname(options.use_dns), "ssh"); #endif |