diff options
author | Damien Miller <djm@mindrot.org> | 2011-05-20 18:57:14 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2011-05-20 18:57:14 +1000 |
commit | ec2eaa3daf7f5543d8619cec30c1d73268323d01 (patch) | |
tree | f292c02672796f366a6d0efec552f99c5116fda7 | |
parent | 989bb7f0c5c52ebe55f7ab1d9c7fef826cb0aaa4 (diff) |
- (djm) [servconf.c] remove leftover droppings of AuthorizedKeysFile2
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | servconf.c | 3 |
2 files changed, 2 insertions, 2 deletions
@@ -6,6 +6,7 @@ | |||
6 | whether it is accepted. Also includes a warning fix on the program | 6 | whether it is accepted. Also includes a warning fix on the program |
7 | fragment uses (bad main() return type). | 7 | fragment uses (bad main() return type). |
8 | bz#1900 and bz#1901 reported by g.esp AT free.fr; ok dtucker@ | 8 | bz#1900 and bz#1901 reported by g.esp AT free.fr; ok dtucker@ |
9 | - (djm) [servconf.c] remove leftover droppings of AuthorizedKeysFile2 | ||
9 | 10 | ||
10 | 20110515 | 11 | 20110515 |
11 | - (djm) OpenBSD CVS Sync | 12 | - (djm) OpenBSD CVS Sync |
diff --git a/servconf.c b/servconf.c index 03a503d07..f862fbfd8 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -313,7 +313,7 @@ typedef enum { | |||
313 | sMaxStartups, sMaxAuthTries, sMaxSessions, | 313 | sMaxStartups, sMaxAuthTries, sMaxSessions, |
314 | sBanner, sUseDNS, sHostbasedAuthentication, | 314 | sBanner, sUseDNS, sHostbasedAuthentication, |
315 | sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, | 315 | sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
316 | sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, | 316 | sClientAliveCountMax, sAuthorizedKeysFile, |
317 | sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, | 317 | sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
318 | sMatch, sPermitOpen, sForceCommand, sChrootDirectory, | 318 | sMatch, sPermitOpen, sForceCommand, sChrootDirectory, |
319 | sUsePrivilegeSeparation, sAllowAgentForwarding, | 319 | sUsePrivilegeSeparation, sAllowAgentForwarding, |
@@ -430,7 +430,6 @@ static struct { | |||
430 | { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL }, | 430 | { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL }, |
431 | { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, | 431 | { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, |
432 | { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL }, | 432 | { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL }, |
433 | { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_ALL }, | ||
434 | { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL}, | 433 | { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL}, |
435 | { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, | 434 | { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
436 | { "permittunnel", sPermitTunnel, SSHCFG_ALL }, | 435 | { "permittunnel", sPermitTunnel, SSHCFG_ALL }, |