summaryrefslogtreecommitdiff
path: root/auth2-kbdint.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2017-10-04 11:23:58 +0100
committerColin Watson <cjwatson@debian.org>2017-10-05 23:58:12 +0100
commit0556ea972b15607b7e13ff31bc05840881c91dd3 (patch)
treed6b8d48062d0278b5ae0eeff42d0e9afa9f26860 /auth2-kbdint.c
parentdb2122d97eb1ecdd8d99b7bf79b0dd2b5addfd92 (diff)
parent801a62eedaaf47b20dbf4b426dc3e084bf0c8d49 (diff)
New upstream release (7.6p1)
Diffstat (limited to 'auth2-kbdint.c')
-rw-r--r--auth2-kbdint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth2-kbdint.c b/auth2-kbdint.c
index bf75c6059..86aad8ddc 100644
--- a/auth2-kbdint.c
+++ b/auth2-kbdint.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-kbdint.c,v 1.7 2014/07/15 15:54:14 millert Exp $ */ 1/* $OpenBSD: auth2-kbdint.c,v 1.8 2017/05/30 14:29:59 markus Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -43,7 +43,7 @@
43extern ServerOptions options; 43extern ServerOptions options;
44 44
45static int 45static int
46userauth_kbdint(Authctxt *authctxt) 46userauth_kbdint(struct ssh *ssh)
47{ 47{
48 int authenticated = 0; 48 int authenticated = 0;
49 char *lang, *devs; 49 char *lang, *devs;
@@ -55,7 +55,7 @@ userauth_kbdint(Authctxt *authctxt)
55 debug("keyboard-interactive devs %s", devs); 55 debug("keyboard-interactive devs %s", devs);
56 56
57 if (options.challenge_response_authentication) 57 if (options.challenge_response_authentication)
58 authenticated = auth2_challenge(authctxt, devs); 58 authenticated = auth2_challenge(ssh, devs);
59 59
60 free(devs); 60 free(devs);
61 free(lang); 61 free(lang);