diff options
Diffstat (limited to 'auth2.c')
-rw-r--r-- | auth2.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2.c,v 1.121 2009/06/22 05:39:28 dtucker Exp $ */ | 1 | /* $OpenBSD: auth2.c,v 1.122 2010/08/31 09:58:37 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -184,7 +184,7 @@ input_service_request(int type, u_int32_t seq, void *ctxt) | |||
184 | Authctxt *authctxt = ctxt; | 184 | Authctxt *authctxt = ctxt; |
185 | u_int len; | 185 | u_int len; |
186 | int acceptit = 0; | 186 | int acceptit = 0; |
187 | char *service = packet_get_string(&len); | 187 | char *service = packet_get_cstring(&len); |
188 | packet_check_eom(); | 188 | packet_check_eom(); |
189 | 189 | ||
190 | if (authctxt == NULL) | 190 | if (authctxt == NULL) |
@@ -223,9 +223,9 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt) | |||
223 | if (authctxt == NULL) | 223 | if (authctxt == NULL) |
224 | fatal("input_userauth_request: no authctxt"); | 224 | fatal("input_userauth_request: no authctxt"); |
225 | 225 | ||
226 | user = packet_get_string(NULL); | 226 | user = packet_get_cstring(NULL); |
227 | service = packet_get_string(NULL); | 227 | service = packet_get_cstring(NULL); |
228 | method = packet_get_string(NULL); | 228 | method = packet_get_cstring(NULL); |
229 | debug("userauth-request for user %s service %s method %s", user, service, method); | 229 | debug("userauth-request for user %s service %s method %s", user, service, method); |
230 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); | 230 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); |
231 | 231 | ||