aboutsummaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-01-16 21:20:46 -0500
committerRoger Dingledine <arma@torproject.org>2012-01-16 21:20:46 -0500
commit1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4 (patch)
treed66295a529c4cd6ad398329cd2e9ae59f36ce4ae /src/or/config.c
parent47aa491f9fbae38f71f96f50c4aec3f871c8419d (diff)
downloadtor-1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4.tar.gz
tor-1e923dd2fbdc0834b8fb3ba97b658f15a6d5f6b4.zip
fix crash bug in original feature4207 branch
PLURAL() assumes that the plural is the canonical name for the option, so now it is.
Diffstat (limited to 'src/or/config.c')
-rw-r--r--src/or/config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 6ecc81db93..2627c14470 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -186,15 +186,15 @@ static config_var_t _option_vars[] = {
V(AlternateHSAuthority, LINELIST, NULL),
V(AssumeReachable, BOOL, "0"),
V(AuthDirBadDir, LINELIST, NULL),
- V(AuthDirBadDirCC, CSV, ""),
+ V(AuthDirBadDirCCs, CSV, ""),
V(AuthDirBadExit, LINELIST, NULL),
- V(AuthDirBadExitCC, CSV, ""),
+ V(AuthDirBadExitCCs, CSV, ""),
V(AuthDirInvalid, LINELIST, NULL),
- V(AuthDirInvalidCC, CSV, ""),
+ V(AuthDirInvalidCCs, CSV, ""),
V(AuthDirFastGuarantee, MEMUNIT, "100 KB"),
V(AuthDirGuardBWGuarantee, MEMUNIT, "250 KB"),
V(AuthDirReject, LINELIST, NULL),
- V(AuthDirRejectCC, CSV, ""),
+ V(AuthDirRejectCCs, CSV, ""),
V(AuthDirRejectUnlisted, BOOL, "0"),
V(AuthDirListBadDirs, BOOL, "0"),
V(AuthDirListBadExits, BOOL, "0"),