|
Lines 71-76
Link Here
|
| 71 |
options->ignore_rhosts = -1; |
71 |
options->ignore_rhosts = -1; |
| 72 |
options->ignore_user_known_hosts = -1; |
72 |
options->ignore_user_known_hosts = -1; |
| 73 |
options->print_motd = -1; |
73 |
options->print_motd = -1; |
|
|
74 |
options->permit_temp_home = -1; |
| 74 |
options->print_lastlog = -1; |
75 |
options->print_lastlog = -1; |
| 75 |
options->x11_forwarding = -1; |
76 |
options->x11_forwarding = -1; |
| 76 |
options->x11_display_offset = -1; |
77 |
options->x11_display_offset = -1; |
|
Lines 167-172
Link Here
|
| 167 |
options->ignore_user_known_hosts = 0; |
168 |
options->ignore_user_known_hosts = 0; |
| 168 |
if (options->print_motd == -1) |
169 |
if (options->print_motd == -1) |
| 169 |
options->print_motd = 1; |
170 |
options->print_motd = 1; |
|
|
171 |
if (options->permit_temp_home == -1) |
| 172 |
options->permit_temp_home = 0; |
| 170 |
if (options->print_lastlog == -1) |
173 |
if (options->print_lastlog == -1) |
| 171 |
options->print_lastlog = 1; |
174 |
options->print_lastlog = 1; |
| 172 |
if (options->x11_forwarding == -1) |
175 |
if (options->x11_forwarding == -1) |
|
Lines 280-286
Link Here
|
| 280 |
sKerberosTgtPassing, sChallengeResponseAuthentication, |
283 |
sKerberosTgtPassing, sChallengeResponseAuthentication, |
| 281 |
sPasswordAuthentication, sKbdInteractiveAuthentication, |
284 |
sPasswordAuthentication, sKbdInteractiveAuthentication, |
| 282 |
sListenAddress, sAddressFamily, |
285 |
sListenAddress, sAddressFamily, |
| 283 |
sPrintMotd, sPrintLastLog, sIgnoreRhosts, |
286 |
sPrintMotd, sPermitTempHome, sPrintLastLog, sIgnoreRhosts, |
| 284 |
sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost, |
287 |
sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost, |
| 285 |
sStrictModes, sEmptyPasswd, sTCPKeepAlive, |
288 |
sStrictModes, sEmptyPasswd, sTCPKeepAlive, |
| 286 |
sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression, |
289 |
sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression, |
|
Lines 364-369
Link Here
|
| 364 |
{ "listenaddress", sListenAddress, SSHCFG_GLOBAL }, |
367 |
{ "listenaddress", sListenAddress, SSHCFG_GLOBAL }, |
| 365 |
{ "addressfamily", sAddressFamily, SSHCFG_GLOBAL }, |
368 |
{ "addressfamily", sAddressFamily, SSHCFG_GLOBAL }, |
| 366 |
{ "printmotd", sPrintMotd, SSHCFG_GLOBAL }, |
369 |
{ "printmotd", sPrintMotd, SSHCFG_GLOBAL }, |
|
|
370 |
{ "permittemphomedir", sPermitTempHome, SSHCFG_ALL }, |
| 367 |
{ "printlastlog", sPrintLastLog, SSHCFG_GLOBAL }, |
371 |
{ "printlastlog", sPrintLastLog, SSHCFG_GLOBAL }, |
| 368 |
{ "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL }, |
372 |
{ "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL }, |
| 369 |
{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL }, |
373 |
{ "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL }, |
|
Lines 895-900
Link Here
|
| 895 |
intptr = &options->print_motd; |
899 |
intptr = &options->print_motd; |
| 896 |
goto parse_flag; |
900 |
goto parse_flag; |
| 897 |
|
901 |
|
|
|
902 |
case sPermitTempHome: |
| 903 |
intptr = &options->permit_temp_home; |
| 904 |
goto parse_flag; |
| 905 |
|
| 898 |
case sPrintLastLog: |
906 |
case sPrintLastLog: |
| 899 |
intptr = &options->print_lastlog; |
907 |
intptr = &options->print_lastlog; |
| 900 |
goto parse_flag; |
908 |
goto parse_flag; |
|
Lines 1366-1371
Link Here
|
| 1366 |
M_CP_INTOPT(hostbased_authentication); |
1374 |
M_CP_INTOPT(hostbased_authentication); |
| 1367 |
M_CP_INTOPT(kbd_interactive_authentication); |
1375 |
M_CP_INTOPT(kbd_interactive_authentication); |
| 1368 |
M_CP_INTOPT(permit_root_login); |
1376 |
M_CP_INTOPT(permit_root_login); |
|
|
1377 |
M_CP_INTOPT(permit_temp_home); |
| 1369 |
|
1378 |
|
| 1370 |
M_CP_INTOPT(allow_tcp_forwarding); |
1379 |
M_CP_INTOPT(allow_tcp_forwarding); |
| 1371 |
M_CP_INTOPT(gateway_ports); |
1380 |
M_CP_INTOPT(gateway_ports); |