[openssh-commits] [openssh] 01/07: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Dec 22 13:21:37 EST 2014
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 058f839fe15c51be8b3a844a76ab9a8db550be4f
Author: djm at openbsd.org <djm at openbsd.org>
Date: Thu Dec 18 23:58:04 2014 +0000
upstream commit
don't count partial authentication success as a failure
against MaxAuthTries; ok deraadt@
---
auth2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/auth2.c b/auth2.c
index d9b440a..3a803e6 100644
--- a/auth2.c
+++ b/auth2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2.c,v 1.132 2014/07/15 15:54:14 millert Exp $ */
+/* $OpenBSD: auth2.c,v 1.133 2014/12/18 23:58:04 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -356,7 +356,7 @@ userauth_finish(Authctxt *authctxt, int authenticated, const char *method,
} else {
/* Allow initial try of "none" auth without failure penalty */
- if (!authctxt->server_caused_failure &&
+ if (!partial && !authctxt->server_caused_failure &&
(authctxt->attempt > 1 || strcmp(method, "none") != 0))
authctxt->failures++;
if (authctxt->failures >= options.max_authtries) {
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list