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 b7050c5c9..c3641cff8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -97,6 +97,7 @@
97 [openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more 97 [openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
98 includes for Linux in 98 includes for Linux in
99 - (dtucker) [cleanup.c] Need defines.h for __dead. 99 - (dtucker) [cleanup.c] Need defines.h for __dead.
100 - (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
100 101
10120060804 10220060804
102 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent 103 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5167,4 +5168,4 @@
5167 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5168 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5168 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5169 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5169 5170
5170$Id: ChangeLog,v 1.4459 2006/08/05 04:46:27 dtucker Exp $ 5171$Id: ChangeLog,v 1.4460 2006/08/05 05:24:59 dtucker Exp $
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 */