summaryrefslogtreecommitdiff
path: root/auth2-gss.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-gss.c')
-rw-r--r--auth2-gss.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/auth2-gss.c b/auth2-gss.c
index feb97d7c3..75b94b009 100644
--- a/auth2-gss.c
+++ b/auth2-gss.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-gss.c,v 1.2 2003/08/24 17:36:51 deraadt Exp $ */ 1/* $OpenBSD: auth2-gss.c,v 1.3 2003/09/01 20:44:54 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. 4 * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
@@ -98,8 +98,10 @@ userauth_gssapi(Authctxt *authctxt)
98 return (0); 98 return (0);
99 } 99 }
100 100
101 if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &oid)))) 101 if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &oid)))) {
102 xfree(doid);
102 return (0); 103 return (0);
104 }
103 105
104 authctxt->methoddata=(void *)ctxt; 106 authctxt->methoddata=(void *)ctxt;
105 107