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)
- (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 ad3bd3552..8107e723f 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -124,13 +124,6 @@ auth_password(Authctxt *authctxt, const char *password)
124 if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES) 124 if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
125 return 0; 125 return 0;
126#endif 126#endif
127#ifdef HAVE_CYGWIN
128 /*
129 * Empty password is only possible on NT if the user has _really_
130 * an empty password and authentication is done, though.
131 */
132 if (!is_winnt)
133#endif
134 if (*password == '\0' && options.permit_empty_passwd == 0) 127 if (*password == '\0' && options.permit_empty_passwd == 0)
135 return 0; 128 return 0;
136#ifdef KRB5 129#ifdef KRB5