summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2008-07-25 09:44:11 +0000
committerColin Watson <cjwatson@debian.org>2008-07-25 09:44:11 +0000
commit3dd88e844fe9f6671b1c4959ce4e7a35f9184e07 (patch)
tree97a7af3100d3ecdf9124e5d789dbe05a75d90b77 /servconf.c
parentf2eafd98a1efb4b49a714abacba2914583a95018 (diff)
add GSSAPIKeyExchange, GSSAPIStrictAcceptorCheck, and PermitBlacklistedKeys to sshd -T configuration dump
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/servconf.c b/servconf.c
index 6760401ff..66ce39026 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1599,7 +1599,9 @@ dump_config(ServerOptions *o)
1599 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup); 1599 dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
1600 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token); 1600 dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
1601 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication); 1601 dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1602 dump_cfg_fmtint(sGssKeyEx, o->gss_keyex);
1602 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds); 1603 dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
1604 dump_cfg_fmtint(sGssStrictAcceptor, o->gss_strict_acceptor);
1603 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication); 1605 dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1604 dump_cfg_fmtint(sKbdInteractiveAuthentication, 1606 dump_cfg_fmtint(sKbdInteractiveAuthentication,
1605 o->kbd_interactive_authentication); 1607 o->kbd_interactive_authentication);
@@ -1611,6 +1613,7 @@ dump_config(ServerOptions *o)
1611 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost); 1613 dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost);
1612 dump_cfg_fmtint(sStrictModes, o->strict_modes); 1614 dump_cfg_fmtint(sStrictModes, o->strict_modes);
1613 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive); 1615 dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive);
1616 dump_cfg_fmtint(sPermitBlacklistedKeys, o->permit_blacklisted_keys);
1614 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd); 1617 dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd);
1615 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env); 1618 dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env);
1616 dump_cfg_fmtint(sUseLogin, o->use_login); 1619 dump_cfg_fmtint(sUseLogin, o->use_login);