summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/auth2-none.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/auth2-none.c')
-rw-r--r--crypto/openssh/auth2-none.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/openssh/auth2-none.c b/crypto/openssh/auth2-none.c
index c07b2dd..c342add 100644
--- a/crypto/openssh/auth2-none.c
+++ b/crypto/openssh/auth2-none.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth2-none.c,v 1.4 2002/06/27 10:35:47 deraadt Exp $");
+RCSID("$OpenBSD: auth2-none.c,v 1.6 2003/08/26 09:58:43 markus Exp $");
#include "auth.h"
#include "xmalloc.h"
@@ -100,7 +100,9 @@ userauth_none(Authctxt *authctxt)
if (check_nt_auth(1, authctxt->pw) == 0)
return(0);
#endif
- return (authctxt->valid ? PRIVSEP(auth_password(authctxt, "")) : 0);
+ if (options.password_authentication)
+ return (PRIVSEP(auth_password(authctxt, "")));
+ return (0);
}
Authmethod method_none = {
OpenPOWER on IntegriCloud