diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-10 10:26:57 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-10 10:26:57 +1100 |
commit | 8c65f646a93ed2f61da65ba0ecf65a99bd585b79 (patch) | |
tree | 40d5451fe48c9ef98525bdefd6a672a7484ac6de /servconf.c | |
parent | 269275c90cd2ffda85f32114bfaeff978298e346 (diff) |
- (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c]
Remove hacks add for RoutingDomain in preparation for its removal.
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/servconf.c b/servconf.c index 9ad08ce87..2cdc480e6 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -424,11 +424,7 @@ static struct { | |||
424 | { "match", sMatch, SSHCFG_ALL }, | 424 | { "match", sMatch, SSHCFG_ALL }, |
425 | { "permitopen", sPermitOpen, SSHCFG_ALL }, | 425 | { "permitopen", sPermitOpen, SSHCFG_ALL }, |
426 | { "forcecommand", sForceCommand, SSHCFG_ALL }, | 426 | { "forcecommand", sForceCommand, SSHCFG_ALL }, |
427 | #ifdef USE_ROUTINGDOMAIN | ||
428 | { "routingdomain", sRDomain, SSHCFG_GLOBAL }, | 427 | { "routingdomain", sRDomain, SSHCFG_GLOBAL }, |
429 | #else | ||
430 | { "routingdomain", sUnsupported, SSHCFG_GLOBAL }, | ||
431 | #endif | ||
432 | { "chrootdirectory", sChrootDirectory, SSHCFG_ALL }, | 428 | { "chrootdirectory", sChrootDirectory, SSHCFG_ALL }, |
433 | { NULL, sBadOption, 0 } | 429 | { NULL, sBadOption, 0 } |
434 | }; | 430 | }; |
@@ -1300,7 +1296,6 @@ process_server_config_line(ServerOptions *options, char *line, | |||
1300 | *charptr = xstrdup(arg); | 1296 | *charptr = xstrdup(arg); |
1301 | break; | 1297 | break; |
1302 | 1298 | ||
1303 | #ifdef USE_ROUTINGDOMAIN | ||
1304 | case sRDomain: | 1299 | case sRDomain: |
1305 | intptr = &options->rdomain; | 1300 | intptr = &options->rdomain; |
1306 | arg = strdelim(&cp); | 1301 | arg = strdelim(&cp); |
@@ -1313,7 +1308,6 @@ process_server_config_line(ServerOptions *options, char *line, | |||
1313 | if (*intptr == -1) | 1308 | if (*intptr == -1) |
1314 | *intptr = value; | 1309 | *intptr = value; |
1315 | break; | 1310 | break; |
1316 | #endif | ||
1317 | 1311 | ||
1318 | case sDeprecated: | 1312 | case sDeprecated: |
1319 | logit("%s line %d: Deprecated option %s", | 1313 | logit("%s line %d: Deprecated option %s", |