summaryrefslogtreecommitdiff
path: root/auth2-gss.c
diff options
context:
space:
mode:
authordjm <djm>2013-04-23 05:18:52 +0000
committerdjm <djm>2013-04-23 05:18:52 +0000
commite637848bb91e626bdb6b79a72c4a659d328bf455 (patch)
treed58468e9b286fb9a0cf277554c8112170fed6116 /auth2-gss.c
parent12dc3e0fd962d6771a7cca6805262c7b4cafa062 (diff)
downloadopenssh-e637848bb91e626bdb6b79a72c4a659d328bf455.tar.gz
- djm@cvs.openbsd.org 2013/04/05 00:14:00
[auth2-gss.c krl.c sshconnect2.c] hush some {unused, printf type} warnings
Diffstat (limited to 'auth2-gss.c')
-rw-r--r--auth2-gss.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/auth2-gss.c b/auth2-gss.c
index 93d576bf..de1bd064 100644
--- a/auth2-gss.c
+++ b/auth2-gss.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2-gss.c,v 1.18 2012/12/02 20:34:09 djm Exp $ */
+/* $OpenBSD: auth2-gss.c,v 1.19 2013/04/05 00:14:00 djm Exp $ */
/*
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
@@ -229,14 +229,11 @@ static void
input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt)
{
Authctxt *authctxt = ctxt;
- Gssctxt *gssctxt;
int authenticated;
if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
fatal("No authentication or GSSAPI context");
- gssctxt = authctxt->methoddata;
-
/*
* We don't need to check the status, because we're only enabled in
* the dispatcher once the exchange is complete