summaryrefslogtreecommitdiff
path: root/auth2-gss.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-08-05 15:24:59 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-08-05 15:24:59 +1000
commit8c6fedaf22799ac3bfcaad8f6020ec9d5f4d834d (patch)
treeee9e7ee1ef404d491697cca1c743709a42d5d9fe /auth2-gss.c
parent90659f8166455cdde9126d0cc0d8388e300dd65c (diff)
- (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
Diffstat (limited to 'auth2-gss.c')
-rw-r--r--auth2-gss.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/auth2-gss.c b/auth2-gss.c
index 67144e495..d88bc4273 100644
--- a/auth2-gss.c
+++ b/auth2-gss.c
@@ -26,6 +26,8 @@
26 26
27#include "includes.h" 27#include "includes.h"
28 28
29#ifdef GSSAPI
30
29#include <sys/types.h> 31#include <sys/types.h>
30 32
31#include "xmalloc.h" 33#include "xmalloc.h"
@@ -293,3 +295,5 @@ Authmethod method_gssapi = {
293 userauth_gssapi, 295 userauth_gssapi,
294 &options.gss_authentication 296 &options.gss_authentication
295}; 297};
298
299#endif /* GSSAPI */