diff options
Diffstat (limited to 'debian/patches/gssapi-compat.patch')
-rw-r--r-- | debian/patches/gssapi-compat.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/debian/patches/gssapi-compat.patch b/debian/patches/gssapi-compat.patch deleted file mode 100644 index b93134933..000000000 --- a/debian/patches/gssapi-compat.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | Description: Compatibility with old GSSAPI option names | ||
2 | These options were supported by the old ssh-krb5 package in Debian. | ||
3 | . | ||
4 | Forwarded to Simon Wilkinson for inclusion in the GSSAPI patch. | ||
5 | Author: Colin Watson <cjwatson@debian.org> | ||
6 | Forwarded: yes | ||
7 | Last-Updated: 2010-03-01 | ||
8 | |||
9 | Index: b/servconf.c | ||
10 | =================================================================== | ||
11 | --- a/servconf.c | ||
12 | +++ b/servconf.c | ||
13 | @@ -381,16 +381,20 @@ | ||
14 | #ifdef GSSAPI | ||
15 | { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL }, | ||
16 | { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL }, | ||
17 | + { "gssapicleanupcreds", sGssCleanupCreds, SSHCFG_GLOBAL }, | ||
18 | { "gssapistrictacceptorcheck", sGssStrictAcceptor, SSHCFG_GLOBAL }, | ||
19 | { "gssapikeyexchange", sGssKeyEx, SSHCFG_GLOBAL }, | ||
20 | { "gssapistorecredentialsonrekey", sGssStoreRekey, SSHCFG_GLOBAL }, | ||
21 | #else | ||
22 | { "gssapiauthentication", sUnsupported, SSHCFG_ALL }, | ||
23 | { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL }, | ||
24 | + { "gssapicleanupcreds", sUnsupported, SSHCFG_GLOBAL }, | ||
25 | { "gssapistrictacceptorcheck", sUnsupported, SSHCFG_GLOBAL }, | ||
26 | { "gssapikeyexchange", sUnsupported, SSHCFG_GLOBAL }, | ||
27 | { "gssapistorecredentialsonrekey", sUnsupported, SSHCFG_GLOBAL }, | ||
28 | #endif | ||
29 | + { "gssusesessionccache", sUnsupported, SSHCFG_GLOBAL }, | ||
30 | + { "gssapiusesessioncredcache", sUnsupported, SSHCFG_GLOBAL }, | ||
31 | { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL }, | ||
32 | { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL }, | ||
33 | { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, | ||