summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-02-28 01:16:06 +0000
committerColin Watson <cjwatson@debian.org>2010-02-28 01:16:06 +0000
commit4c40f2de14fa2ba775bd0c12dcff56f7a4c7b9ee (patch)
tree487e11417a61e483fa4c99efcbd2b9de5e6d92c6 /debian/patches
parent08cdd6577e7f6d807db8d89e51869afae4b2f97a (diff)
Add GSSAPIStoreCredentialsOnRekey to 'sshd -T' configuration dump.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/gssapi-dump.patch7
1 files changed, 4 insertions, 3 deletions
diff --git a/debian/patches/gssapi-dump.patch b/debian/patches/gssapi-dump.patch
index 7292ac08d..79ee7c4b4 100644
--- a/debian/patches/gssapi-dump.patch
+++ b/debian/patches/gssapi-dump.patch
@@ -1,6 +1,6 @@
1Description: GSSAPI configuration dump fixes 1Description: GSSAPI configuration dump fixes
2 Add GSSAPIKeyExchange and GSSAPIStrictAcceptorCheck to sshd -T 2 Add GSSAPIKeyExchange, GSSAPIStrictAcceptorCheck, and
3 configuration dump. 3 GSSAPIStoreCredentialsOnRekey to sshd -T configuration dump.
4Author: Colin Watson <cjwatson@debian.org> 4Author: Colin Watson <cjwatson@debian.org>
5Last-Updated: 2010-02-27 5Last-Updated: 2010-02-27
6 6
@@ -8,13 +8,14 @@ Index: b/servconf.c
8=================================================================== 8===================================================================
9--- a/servconf.c 9--- a/servconf.c
10+++ b/servconf.c 10+++ b/servconf.c
11@@ -1624,7 +1624,9 @@ 11@@ -1624,7 +1624,10 @@
12 #endif 12 #endif
13 #ifdef GSSAPI 13 #ifdef GSSAPI
14 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication); 14 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
15+ dump_cfg_fmtint(sGssKeyEx, o->gss_keyex); 15+ dump_cfg_fmtint(sGssKeyEx, o->gss_keyex);
16 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds); 16 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
17+ dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor); 17+ dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor);
18+ dump_cfg_fmtint(sGssStoreRekey, o->gss_store_rekey);
18 #endif 19 #endif
19 #ifdef JPAKE 20 #ifdef JPAKE
20 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication, 21 dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,