summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/auth2-kbdint.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/auth2-kbdint.c')
-rw-r--r--crypto/openssh/auth2-kbdint.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/openssh/auth2-kbdint.c b/crypto/openssh/auth2-kbdint.c
index cae051e..e609928 100644
--- a/crypto/openssh/auth2-kbdint.c
+++ b/crypto/openssh/auth2-kbdint.c
@@ -49,8 +49,16 @@ userauth_kbdint(Authctxt *authctxt)
if (options.challenge_response_authentication)
authenticated = auth2_challenge(authctxt, devs);
+#ifdef USE_PAM
+ if (authenticated == 0 && options.pam_authentication_via_kbd_int)
+ authenticated = auth2_pam(authctxt);
+#endif
xfree(devs);
xfree(lang);
+#ifdef HAVE_CYGWIN
+ if (check_nt_auth(0, authctxt->pw) == 0)
+ return(0);
+#endif
return authenticated;
}
OpenPOWER on IntegriCloud