summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-21 00:26:22 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-21 00:26:22 +0000
commit115422f918d86e007cb3c050e9c4d09102580089 (patch)
tree339dd06db9e9e45aa42d9ad41dc511fc68511aeb /auth-passwd.c
parent45933dd9aa7e7e8c9258001d67f2c118c3e026f4 (diff)
downloadopenssh-git-115422f918d86e007cb3c050e9c4d09102580089.tar.gz
- (bal) Cygwin special handling of empty passwords wrong. Patch by
vinschen@redhat.com
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index ad3bd355..8107e723 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -124,13 +124,6 @@ auth_password(Authctxt *authctxt, const char *password)
if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
return 0;
#endif
-#ifdef HAVE_CYGWIN
- /*
- * Empty password is only possible on NT if the user has _really_
- * an empty password and authentication is done, though.
- */
- if (!is_winnt)
-#endif
if (*password == '\0' && options.permit_empty_passwd == 0)
return 0;
#ifdef KRB5