|
Lines 99-104
Link Here
|
| 99 |
options->permit_empty_passwd = -1; |
99 |
options->permit_empty_passwd = -1; |
| 100 |
options->permit_user_env = -1; |
100 |
options->permit_user_env = -1; |
| 101 |
options->use_login = -1; |
101 |
options->use_login = -1; |
|
|
102 |
options->sacl_support = -1; |
| 102 |
options->compression = -1; |
103 |
options->compression = -1; |
| 103 |
options->allow_tcp_forwarding = -1; |
104 |
options->allow_tcp_forwarding = -1; |
| 104 |
options->allow_agent_forwarding = -1; |
105 |
options->allow_agent_forwarding = -1; |
|
Lines 302-307
Link Here
|
| 302 |
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
303 |
sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
| 303 |
sMatch, sPermitOpen, sForceCommand, sChrootDirectory, |
304 |
sMatch, sPermitOpen, sForceCommand, sChrootDirectory, |
| 304 |
sUsePrivilegeSeparation, sAllowAgentForwarding, |
305 |
sUsePrivilegeSeparation, sAllowAgentForwarding, |
|
|
306 |
sSACLSupport, |
| 305 |
sDeprecated, sUnsupported |
307 |
sDeprecated, sUnsupported |
| 306 |
} ServerOpCodes; |
308 |
} ServerOpCodes; |
| 307 |
|
309 |
|
|
Lines 409-414
Link Here
|
| 409 |
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, |
411 |
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, |
| 410 |
{ "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, |
412 |
{ "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, |
| 411 |
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, |
413 |
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, |
|
|
414 |
{ "saclsupport", sSACLSupport }, |
| 412 |
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
415 |
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
| 413 |
{ "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, |
416 |
{ "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, |
| 414 |
{ "match", sMatch, SSHCFG_ALL }, |
417 |
{ "match", sMatch, SSHCFG_ALL }, |
|
Lines 922-927
Link Here
|
| 922 |
charptr = &options->xauth_location; |
925 |
charptr = &options->xauth_location; |
| 923 |
goto parse_filename; |
926 |
goto parse_filename; |
| 924 |
|
927 |
|
|
|
928 |
case sSACLSupport: |
| 929 |
intptr = &options->sacl_support; |
| 930 |
goto parse_flag; |
| 931 |
|
| 925 |
case sStrictModes: |
932 |
case sStrictModes: |
| 926 |
intptr = &options->strict_modes; |
933 |
intptr = &options->strict_modes; |
| 927 |
goto parse_flag; |
934 |
goto parse_flag; |