summaryrefslogtreecommitdiff
path: root/auth2-passwd.c
diff options
context:
space:
mode:
authordtucker <dtucker>2009-03-08 00:40:27 +0000
committerdtucker <dtucker>2009-03-08 00:40:27 +0000
commit80d1dfdde146d2b71ce169d83c05b26170e1c429 (patch)
treea2ba4ae839aa4e4e5ce79d84d848b6f4ad965941 /auth2-passwd.c
parent5411f3adda41af8c3d6830e3f016b1c2f15c842d (diff)
downloadopenssh-80d1dfdde146d2b71ce169d83c05b26170e1c429.tar.gz
- (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 'auth2-passwd.c')
-rw-r--r--auth2-passwd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/auth2-passwd.c b/auth2-passwd.c
index 421c5c25..5f1f3635 100644
--- a/auth2-passwd.c
+++ b/auth2-passwd.c
@@ -68,10 +68,6 @@ userauth_passwd(Authctxt *authctxt)
logit("password change not supported");
else if (PRIVSEP(auth_password(authctxt, password)) == 1)
authenticated = 1;
-#ifdef HAVE_CYGWIN
- if (check_nt_auth(1, authctxt->pw) == 0)
- authenticated = 0;
-#endif
memset(password, 0, len);
xfree(password);
return authenticated;