summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--auth2-gss.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b7050c5c..c3641cff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -97,6 +97,7 @@
[openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
includes for Linux in
- (dtucker) [cleanup.c] Need defines.h for __dead.
+ - (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
20060804
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5167,4 +5168,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4459 2006/08/05 04:46:27 dtucker Exp $
+$Id: ChangeLog,v 1.4460 2006/08/05 05:24:59 dtucker Exp $
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 */