View | Details | Raw Unified | Return to bug 1490 | Differences between
and this patch

Collapse All | Expand All

(-)servconf.c (+9 lines)
Lines 1544-1549 dump_config(ServerOptions *o) Link Here
1544
	}
1544
	}
1545
1545
1546
	/* integer arguments */
1546
	/* integer arguments */
1547
#ifdef USE_PAM
1548
	dump_cfg_int(sUsePAM, o->use_pam);
1549
#endif
1547
	dump_cfg_int(sServerKeyBits, o->server_key_bits);
1550
	dump_cfg_int(sServerKeyBits, o->server_key_bits);
1548
	dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1551
	dump_cfg_int(sLoginGraceTime, o->login_grace_time);
1549
	dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
1552
	dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time);
Lines 1562-1573 dump_config(ServerOptions *o) Link Here
1562
	    o->hostbased_uses_name_from_packet_only);
1565
	    o->hostbased_uses_name_from_packet_only);
1563
	dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1566
	dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication);
1564
	dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
1567
	dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication);
1568
#ifdef KRB5
1565
	dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1569
	dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication);
1566
	dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1570
	dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd);
1567
	dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
1571
	dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup);
1572
# ifdef USE_AFS
1568
	dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
1573
	dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token);
1574
# endif
1575
#endif
1576
#ifdef GSSAPI
1569
	dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1577
	dump_cfg_fmtint(sGssAuthentication, o->gss_authentication);
1570
	dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
1578
	dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds);
1579
#endif
1571
	dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1580
	dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication);
1572
	dump_cfg_fmtint(sKbdInteractiveAuthentication,
1581
	dump_cfg_fmtint(sKbdInteractiveAuthentication,
1573
	    o->kbd_interactive_authentication);
1582
	    o->kbd_interactive_authentication);

Return to bug 1490