diff options
author | Colin Watson <cjwatson@debian.org> | 2010-02-27 18:08:33 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2010-02-27 18:08:33 +0000 |
commit | 56276d29ea829cd4c92cd881b496388d93c23dee (patch) | |
tree | 29ed53c0e3740b2fc2c138cb5b2a145412564b3b /debian/patches/gssapi-dump.patch | |
parent | 8dcc7c5ef45cf5032dca7a308ffe17d3935e62d5 (diff) |
DEP-3 tagging of GSSAPI patches; split old-gssapi.patch more appropriately
Diffstat (limited to 'debian/patches/gssapi-dump.patch')
-rw-r--r-- | debian/patches/gssapi-dump.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/patches/gssapi-dump.patch b/debian/patches/gssapi-dump.patch new file mode 100644 index 000000000..7292ac08d --- /dev/null +++ b/debian/patches/gssapi-dump.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | Description: GSSAPI configuration dump fixes | ||
2 | Add GSSAPIKeyExchange and GSSAPIStrictAcceptorCheck to sshd -T | ||
3 | configuration dump. | ||
4 | Author: Colin Watson <cjwatson@debian.org> | ||
5 | Last-Updated: 2010-02-27 | ||
6 | |||
7 | Index: b/servconf.c | ||
8 | =================================================================== | ||
9 | --- a/servconf.c | ||
10 | +++ b/servconf.c | ||
11 | @@ -1624,7 +1624,9 @@ | ||
12 | #endif | ||
13 | #ifdef GSSAPI | ||
14 | dump_cfg_fmtint(sGssAuthentication, o->gss_authentication); | ||
15 | + dump_cfg_fmtint(sGssKeyEx, o->gss_keyex); | ||
16 | dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds); | ||
17 | + dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor); | ||
18 | #endif | ||
19 | #ifdef JPAKE | ||
20 | dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication, | ||