summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-11-09 10:30:06 +0000
committerRoger Dingledine <arma@torproject.org>2004-11-09 10:30:06 +0000
commita972589bdb807b9cc93ad42e26f25a7f6c335f73 (patch)
treee1ca1a7753b7a5d229112a24bedbb0b79ca24d00
parent8d8d6b56618b431584a2bd2aa6c38f567b31e7d2 (diff)
downloadtor-a972589bdb807b9cc93ad42e26f25a7f6c335f73.tar.gz
tor-a972589bdb807b9cc93ad42e26f25a7f6c335f73.zip
allow BandwidthRate and Burst to be abbrevs in the torrc too
svn:r2744
-rw-r--r--src/or/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 12437317ee..66aa4918ed 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -55,8 +55,8 @@ static config_abbrev_t config_abbrevs[] = {
PLURAL(RendNode),
PLURAL(RendExcludeNode),
{ "l", "Log", 1},
- { "BandwidthRate", "BandwidthRateBytes", 1},
- { "BandwidthBurst", "BandwidthBurstBytes", 1},
+ { "BandwidthRate", "BandwidthRateBytes", 0},
+ { "BandwidthBurst", "BandwidthBurstBytes", 0},
{ NULL, NULL , 0},
};
#undef PLURAL