]> andersk Git - openssh.git/commitdiff
- (bal) Cygwin special handling of empty passwords wrong. Patch by
authormouring <mouring>
Fri, 21 Jun 2002 00:26:22 +0000 (00:26 +0000)
committermouring <mouring>
Fri, 21 Jun 2002 00:26:22 +0000 (00:26 +0000)
   vinschen@redhat.com

ChangeLog
auth-passwd.c

index abba4156b63f876f2d6a9d4010bc5785b9d287f5..1582aa8a784640d6db28cdf4db5d249380d4f7fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,8 @@
    - deraadt@cvs.openbsd.org 2002/06/17 06:05:56
      [scp.c]
      make usage like man page
+ - (bal) Cygwin special handling of empty passwords wrong.  Patch by
+   vinschen@redhat.com
 
 20020613
  - (bal) typo of setgroup for cygwin.  Patch by vinschen@redhat.com
index ad3bd3552209b83d43f5d8f6eda58bc4227d0613..8107e723f41fe8127ed054c8b0d9b5973c21900b 100644 (file)
@@ -123,13 +123,6 @@ auth_password(Authctxt *authctxt, const char *password)
 #ifndef HAVE_CYGWIN
        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;
This page took 0.041009 seconds and 5 git commands to generate.