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)
downloadopenssh-git-8c6fedaf22799ac3bfcaad8f6020ec9d5f4d834d.tar.gz
- (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 67144e49..d88bc427 100644
--- a/auth2-gss.c
+++ b/auth2-gss.c
@@ -26,6 +26,8 @@
#include "includes.h"
+#ifdef GSSAPI
+
#include <sys/types.h>
#include "xmalloc.h"
@@ -293,3 +295,5 @@ Authmethod method_gssapi = {
userauth_gssapi,
&options.gss_authentication
};
+
+#endif /* GSSAPI */