- (dtucker) [auth.c] Fix parens in audit log check.
diff --git a/auth.c b/auth.c
index bbf3a54..4b62ad8 100644
--- a/auth.c
+++ b/auth.c
@@ -247,8 +247,8 @@
 #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