=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/auth2-gss.c,v retrieving revision 1.10 retrieving revision 1.10.2.2 diff -u -r1.10 -r1.10.2.2 --- src/usr.bin/ssh/auth2-gss.c 2005/07/17 07:17:54 1.10 +++ src/usr.bin/ssh/auth2-gss.c 2006/10/06 03:19:32 1.10.2.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: auth2-gss.c,v 1.10 2005/07/17 07:17:54 djm Exp $ */ +/* $OpenBSD: auth2-gss.c,v 1.10.2.2 2006/10/06 03:19:32 brad Exp $ */ /* * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. @@ -24,22 +24,21 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" +#include -#ifdef GSSAPI - +#include "xmalloc.h" +#include "key.h" +#include "hostfile.h" #include "auth.h" #include "ssh2.h" -#include "xmalloc.h" #include "log.h" #include "dispatch.h" +#include "buffer.h" #include "servconf.h" -#include "compat.h" #include "packet.h" +#include "ssh-gss.h" #include "monitor_wrap.h" -#include "ssh-gss.h" - extern ServerOptions options; static void input_gssapi_token(int type, u_int32_t plen, void *ctxt); @@ -49,7 +48,7 @@ /* * We only support those mechanisms that we know about (ie ones that we know - * how to check local user kuserok and the like + * how to check local user kuserok and the like) */ static int userauth_gssapi(Authctxt *authctxt) @@ -101,11 +100,13 @@ } if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt, &goid)))) { + if (ctxt != NULL) + ssh_gssapi_delete_ctx(&ctxt); xfree(doid); return (0); } - authctxt->methoddata=(void *)ctxt; + authctxt->methoddata = (void *)ctxt; packet_start(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE); @@ -290,5 +291,3 @@ userauth_gssapi, &options.gss_authentication }; - -#endif /* GSSAPI */