|
Lines 97-102
Link Here
|
| 97 |
options->permit_empty_passwd = -1; |
97 |
options->permit_empty_passwd = -1; |
| 98 |
options->permit_user_env = -1; |
98 |
options->permit_user_env = -1; |
| 99 |
options->use_login = -1; |
99 |
options->use_login = -1; |
|
|
100 |
options->sacl_support = -1; |
| 100 |
options->compression = -1; |
101 |
options->compression = -1; |
| 101 |
options->allow_tcp_forwarding = -1; |
102 |
options->allow_tcp_forwarding = -1; |
| 102 |
options->num_allow_users = 0; |
103 |
options->num_allow_users = 0; |
|
Lines 293-298
Link Here
|
| 293 |
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
294 |
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
| 294 |
sMatch, sPermitOpen, sForceCommand, |
295 |
sMatch, sPermitOpen, sForceCommand, |
| 295 |
sUsePrivilegeSeparation, |
296 |
sUsePrivilegeSeparation, |
|
|
297 |
sSACLSupport, |
| 296 |
sDeprecated, sUnsupported |
298 |
sDeprecated, sUnsupported |
| 297 |
} ServerOpCodes; |
299 |
} ServerOpCodes; |
| 298 |
|
300 |
|
|
Lines 398-403
Link Here
|
| 398 |
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, |
400 |
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, |
| 399 |
{ "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, |
401 |
{ "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, |
| 400 |
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, |
402 |
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, |
|
|
403 |
{ "saclsupport", sSACLSupport }, |
| 401 |
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
404 |
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
| 402 |
{ "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, |
405 |
{ "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, |
| 403 |
{ "match", sMatch, SSHCFG_ALL }, |
406 |
{ "match", sMatch, SSHCFG_ALL }, |
|
Lines 912-917
Link Here
|
| 912 |
charptr = &options->xauth_location; |
915 |
charptr = &options->xauth_location; |
| 913 |
goto parse_filename; |
916 |
goto parse_filename; |
| 914 |
|
917 |
|
|
|
918 |
case sSACLSupport: |
| 919 |
intptr = &options->sacl_support; |
| 920 |
goto parse_flag; |
| 921 |
|
| 915 |
case sStrictModes: |
922 |
case sStrictModes: |
| 916 |
intptr = &options->strict_modes; |
923 |
intptr = &options->strict_modes; |
| 917 |
goto parse_flag; |
924 |
goto parse_flag; |