diff options
author | Damien Miller <djm@mindrot.org> | 2009-01-28 16:13:39 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2009-01-28 16:13:39 +1100 |
commit | c30def96e2c7cf3cb7f11182603d457fe8d093cf (patch) | |
tree | 04b6f7b61292030a5f652509cd98bf9ac19f89ff /auth2-chall.c | |
parent | b53d8a18823cfa689b6a2353c6f82aaf364047bf (diff) |
- djm@cvs.openbsd.org 2008/12/09 04:32:22
[auth2-chall.c]
replace by-hand string building with xasprinf(); ok deraadt@
Diffstat (limited to 'auth2-chall.c')
-rw-r--r-- | auth2-chall.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/auth2-chall.c b/auth2-chall.c index d816578c6..e6dbffe22 100644 --- a/auth2-chall.c +++ b/auth2-chall.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-chall.c,v 1.33 2007/09/21 08:15:29 djm Exp $ */ | 1 | /* $OpenBSD: auth2-chall.c,v 1.34 2008/12/09 04:32:22 djm 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. |
@@ -281,7 +281,7 @@ input_userauth_info_response(int type, u_int32_t seq, void *ctxt) | |||
281 | { | 281 | { |
282 | Authctxt *authctxt = ctxt; | 282 | Authctxt *authctxt = ctxt; |
283 | KbdintAuthctxt *kbdintctxt; | 283 | KbdintAuthctxt *kbdintctxt; |
284 | int authenticated = 0, res, len; | 284 | int authenticated = 0, res; |
285 | u_int i, nresp; | 285 | u_int i, nresp; |
286 | char **response = NULL, *method; | 286 | char **response = NULL, *method; |
287 | 287 | ||
@@ -330,11 +330,7 @@ input_userauth_info_response(int type, u_int32_t seq, void *ctxt) | |||
330 | break; | 330 | break; |
331 | } | 331 | } |
332 | 332 | ||
333 | len = strlen("keyboard-interactive") + 2 + | 333 | xasprintf(&method, "keyboard-interactive/%s", kbdintctxt->device->name); |
334 | strlen(kbdintctxt->device->name); | ||
335 | method = xmalloc(len); | ||
336 | snprintf(method, len, "keyboard-interactive/%s", | ||
337 | kbdintctxt->device->name); | ||
338 | 334 | ||
339 | if (!authctxt->postponed) { | 335 | if (!authctxt->postponed) { |
340 | if (authenticated) { | 336 | if (authenticated) { |