summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2011-01-24 11:46:57 +0000
committerColin Watson <cjwatson@debian.org>2011-01-24 11:46:57 +0000
commit0970072c89b079b022538e3c366fbfa2c53fc821 (patch)
treeb7024712d74234bb5a8b036ccbc9109e2e211296 /auth2.c
parent4e8aa4da57000c7bba8e5c49163bc0c0ca383f78 (diff)
parent478ff799463ca926a8dfbabf058f4e84aaffc65a (diff)
merge 5.7p1
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/auth2.c b/auth2.c
index 61b5c0148..3c38cdddc 100644
--- a/auth2.c
+++ b/auth2.c
@@ -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