diff options
Diffstat (limited to 'auth2-chall.c')
-rw-r--r-- | auth2-chall.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/auth2-chall.c b/auth2-chall.c index ea4eb6952..ddabe1a90 100644 --- a/auth2-chall.c +++ b/auth2-chall.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-chall.c,v 1.41 2014/02/02 03:44:31 djm Exp $ */ | 1 | /* $OpenBSD: auth2-chall.c,v 1.42 2015/01/19 20:07:45 markus Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * Copyright (c) 2001 Per Allansson. All rights reserved. | 4 | * Copyright (c) 2001 Per Allansson. All rights reserved. |
@@ -49,7 +49,7 @@ extern ServerOptions options; | |||
49 | 49 | ||
50 | static int auth2_challenge_start(Authctxt *); | 50 | static int auth2_challenge_start(Authctxt *); |
51 | static int send_userauth_info_request(Authctxt *); | 51 | static int send_userauth_info_request(Authctxt *); |
52 | static void input_userauth_info_response(int, u_int32_t, void *); | 52 | static int input_userauth_info_response(int, u_int32_t, void *); |
53 | 53 | ||
54 | #ifdef BSD_AUTH | 54 | #ifdef BSD_AUTH |
55 | extern KbdintDevice bsdauth_device; | 55 | extern KbdintDevice bsdauth_device; |
@@ -279,7 +279,7 @@ send_userauth_info_request(Authctxt *authctxt) | |||
279 | return 1; | 279 | return 1; |
280 | } | 280 | } |
281 | 281 | ||
282 | static void | 282 | static int |
283 | input_userauth_info_response(int type, u_int32_t seq, void *ctxt) | 283 | input_userauth_info_response(int type, u_int32_t seq, void *ctxt) |
284 | { | 284 | { |
285 | Authctxt *authctxt = ctxt; | 285 | Authctxt *authctxt = ctxt; |
@@ -344,6 +344,7 @@ input_userauth_info_response(int type, u_int32_t seq, void *ctxt) | |||
344 | } | 344 | } |
345 | userauth_finish(authctxt, authenticated, "keyboard-interactive", | 345 | userauth_finish(authctxt, authenticated, "keyboard-interactive", |
346 | devicename); | 346 | devicename); |
347 | return 0; | ||
347 | } | 348 | } |
348 | 349 | ||
349 | void | 350 | void |