diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-03-08 01:40:27 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-03-08 01:40:27 +0100 |
commit | 9d86e5d5704092072822336af6d0bee468c25966 (patch) | |
tree | bca452252bba17e05b91a6e215cfcbc5ab533408 /auth-passwd.c | |
parent | - (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}] (diff) | |
download | openssh-9d86e5d5704092072822336af6d0bee468c25966.tar.xz openssh-9d86e5d5704092072822336af6d0bee468c25966.zip |
- (dtucker) [auth-passwd.c auth1.c auth2-kbdint.c auth2-none.c auth2-passwd.c
auth2-pubkey.c session.c openbsd-compat/bsd-cygwin_util.{c,h}
openbsd-compat/daemon.c] Remove support for Windows 95/98/ME and very old
version of Cygwin. Patch from vinschen at redhat com.
Diffstat (limited to 'auth-passwd.c')
-rw-r--r-- | auth-passwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-passwd.c b/auth-passwd.c index bdfced023..b1c6ce092 100644 --- a/auth-passwd.c +++ b/auth-passwd.c @@ -102,7 +102,7 @@ auth_password(Authctxt *authctxt, const char *password) } #endif #ifdef HAVE_CYGWIN - if (is_winnt) { + { HANDLE hToken = cygwin_logon_user(pw, password); if (hToken == INVALID_HANDLE_VALUE) |