diff options
Diffstat (limited to 'debian/patches/gssapi-dump.patch')
-rw-r--r-- | debian/patches/gssapi-dump.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/patches/gssapi-dump.patch b/debian/patches/gssapi-dump.patch deleted file mode 100644 index 0969c59b4..000000000 --- a/debian/patches/gssapi-dump.patch +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | Description: GSSAPI configuration dump fixes | ||
2 | Add GSSAPIKeyExchange, GSSAPIStrictAcceptorCheck, and | ||
3 | GSSAPIStoreCredentialsOnRekey to sshd -T configuration dump. | ||
4 | . | ||
5 | Forwarded to Simon Wilkinson for inclusion in the GSSAPI patch. | ||
6 | Author: Colin Watson <cjwatson@debian.org> | ||
7 | Forwarded: yes | ||
8 | Last-Updated: 2010-02-27 | ||
9 | |||
10 | Index: b/servconf.c | ||
11 | =================================================================== | ||
12 | --- a/servconf.c | ||
13 | +++ b/servconf.c | ||
14 | @@ -1688,7 +1688,10 @@ | ||
15 | #endif | ||
16 | #ifdef GSSAPI | ||
17 | dump_cfg_fmtint(sGssAuthentication, o->gss_authentication); | ||
18 | + dump_cfg_fmtint(sGssKeyEx, o->gss_keyex); | ||
19 | dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds); | ||
20 | + dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor); | ||
21 | + dump_cfg_fmtint(sGssStoreRekey, o->gss_store_rekey); | ||
22 | #endif | ||
23 | #ifdef JPAKE | ||
24 | dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication, | ||