summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c6
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",