diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 19:53:52 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 19:53:52 +1100 |
commit | 1f5e3dc274fe4616435ff451b5216b5bde217c0d (patch) | |
tree | 345cdb5f89e533e8871de0b8527b6cb45cbf9d46 /readconf.c | |
parent | e67f7db968e376c9971dd3a4d4ab3fae4a06bf78 (diff) | |
download | openssh-git-1f5e3dc274fe4616435ff451b5216b5bde217c0d.tar.gz |
- (dtucker) [configure.ac misc.c readconf.c servconf.c ssh-keyscan.c] Make
RoutingDomain an unsupported option on platforms that don't have it.
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -229,7 +229,11 @@ static struct { { "permitlocalcommand", oPermitLocalCommand }, { "visualhostkey", oVisualHostKey }, { "useroaming", oUseRoaming }, +#ifdef USE_ROUTINGDOMAIN { "routingdomain", oRDomain }, +#else + { "routingdomain", oUnsupported }, +#endif #ifdef JPAKE { "zeroknowledgepasswordauthentication", oZeroKnowledgePasswordAuthentication }, @@ -920,6 +924,7 @@ parse_int: intptr = &options->use_roaming; goto parse_flag; +#ifdef USE_ROUTINGDOMAIN case oRDomain: arg = strdelim(&s); if (!arg || *arg == '\0') @@ -932,6 +937,7 @@ parse_int: if (*activep) options->rdomain = value; break; +#endif case oDeprecated: debug("%s line %d: Deprecated option \"%s\"", |