summaryrefslogtreecommitdiff
path: root/auth2-gss.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-gss.c')
-rw-r--r--auth2-gss.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/auth2-gss.c b/auth2-gss.c
index 03210673b..67144e495 100644
--- a/auth2-gss.c
+++ b/auth2-gss.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-gss.c,v 1.14 2006/03/25 22:22:42 djm Exp $ */ 1/* $OpenBSD: auth2-gss.c,v 1.15 2006/08/03 03:34:41 deraadt 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.
@@ -26,18 +26,20 @@
26 26
27#include "includes.h" 27#include "includes.h"
28 28
29#ifdef GSSAPI 29#include <sys/types.h>
30 30
31#include "xmalloc.h"
32#include "key.h"
33#include "hostfile.h"
31#include "auth.h" 34#include "auth.h"
32#include "ssh2.h" 35#include "ssh2.h"
33#include "xmalloc.h"
34#include "log.h" 36#include "log.h"
35#include "dispatch.h" 37#include "dispatch.h"
38#include "buffer.h"
36#include "servconf.h" 39#include "servconf.h"
37#include "packet.h" 40#include "packet.h"
38#include "monitor_wrap.h"
39
40#include "ssh-gss.h" 41#include "ssh-gss.h"
42#include "monitor_wrap.h"
41 43
42extern ServerOptions options; 44extern ServerOptions options;
43 45
@@ -291,5 +293,3 @@ Authmethod method_gssapi = {
291 userauth_gssapi, 293 userauth_gssapi,
292 &options.gss_authentication 294 &options.gss_authentication
293}; 295};
294
295#endif /* GSSAPI */