summaryrefslogtreecommitdiff
path: root/ssh-gss.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-02-25 11:24:44 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-02-25 11:24:44 +1100
commit03978c61f32935b31337844aa25d87dc0edd39d2 (patch)
tree9467a076b7d4fcf741a3f59bf08096f393bf27d0 /ssh-gss.h
parenta423fefb89519814ab4a7a44001268648c58ff36 (diff)
- (dtucker) [configure.ac ssh-gss.h] bz#2073: additional #includes needed
to use Solaris native GSS libs. Patch from Pierre Ossman.
Diffstat (limited to 'ssh-gss.h')
-rw-r--r--ssh-gss.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/ssh-gss.h b/ssh-gss.h
index c29a1b7e7..077e13ce4 100644
--- a/ssh-gss.h
+++ b/ssh-gss.h
@@ -42,12 +42,13 @@
42# include <gssapi/gssapi_generic.h> 42# include <gssapi/gssapi_generic.h>
43# endif 43# endif
44 44
45/* MIT Kerberos doesn't seem to define GSS_NT_HOSTBASED_SERVICE */ 45/* Old MIT Kerberos doesn't seem to define GSS_NT_HOSTBASED_SERVICE */
46 46
47#ifndef GSS_C_NT_HOSTBASED_SERVICE 47# if !HAVE_DECL_GSS_C_NT_HOSTBASED_SERVICE
48#define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name 48# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
49#endif /* GSS_C_NT_... */ 49# endif /* !HAVE_DECL_GSS_C_NT_... */
50#endif /* !HEIMDAL */ 50
51# endif /* !HEIMDAL */
51#endif /* KRB5 */ 52#endif /* KRB5 */
52 53
53/* draft-ietf-secsh-gsskeyex-06 */ 54/* draft-ietf-secsh-gsskeyex-06 */