summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog2
-rw-r--r--gss-serv-krb5.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 6c1422927..3abe6c51a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,8 @@ openssh (1:4.2p1-2) UNRELEASED; urgency=low
8 - Build-depend on libkrb5-dev and configure --with-kerberos5=/usr. 8 - Build-depend on libkrb5-dev and configure --with-kerberos5=/usr.
9 - openssh-client and openssh-server replace ssh-krb5. 9 - openssh-client and openssh-server replace ssh-krb5.
10 - Update commented-out Kerberos/GSSAPI options in default sshd_config. 10 - Update commented-out Kerberos/GSSAPI options in default sshd_config.
11 - Fix HAVE_GSSAPI_KRB5_H/HAVE_GSSAPI_GSSAPI_KRB5_H typos in
12 gss-serv-krb5.c.
11 13
12 -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:48:57 +0100 14 -- Colin Watson <cjwatson@debian.org> Wed, 14 Sep 2005 15:48:57 +0100
13 15
diff --git a/gss-serv-krb5.c b/gss-serv-krb5.c
index 4f02621dd..5033ffb25 100644
--- a/gss-serv-krb5.c
+++ b/gss-serv-krb5.c
@@ -41,9 +41,9 @@ extern ServerOptions options;
41#ifdef HEIMDAL 41#ifdef HEIMDAL
42# include <krb5.h> 42# include <krb5.h>
43#else 43#else
44# ifdef HAVE_GSSAPI_KRB5 44# ifdef HAVE_GSSAPI_KRB5_H
45# include <gssapi_krb5.h> 45# include <gssapi_krb5.h>
46# elif HAVE_GSSAPI_GSSAPI_KRB5 46# elif HAVE_GSSAPI_GSSAPI_KRB5_H
47# include <gssapi/gssapi_krb5.h> 47# include <gssapi/gssapi_krb5.h>
48# endif 48# endif
49#endif 49#endif