blob: 7292ac08d6d192d581fce241950f5c2f87dcf3e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Description: GSSAPI configuration dump fixes
Add GSSAPIKeyExchange and GSSAPIStrictAcceptorCheck to sshd -T
configuration dump.
Author: Colin Watson <cjwatson@debian.org>
Last-Updated: 2010-02-27
Index: b/servconf.c
===================================================================
--- a/servconf.c
+++ b/servconf.c
@@ -1624,7 +1624,9 @@
#endif
#ifdef GSSAPI
dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
+ dump_cfg_fmtint(sGssKeyEx, o->gss_keyex);
dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
+ dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor);
#endif
#ifdef JPAKE
dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication,
|