diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-09 10:30:06 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-09 10:30:06 +0000 |
commit | a972589bdb807b9cc93ad42e26f25a7f6c335f73 (patch) | |
tree | e1ca1a7753b7a5d229112a24bedbb0b79ca24d00 /src | |
parent | 8d8d6b56618b431584a2bd2aa6c38f567b31e7d2 (diff) | |
download | tor-a972589bdb807b9cc93ad42e26f25a7f6c335f73.tar tor-a972589bdb807b9cc93ad42e26f25a7f6c335f73.tar.gz |
allow BandwidthRate and Burst to be abbrevs in the torrc too
svn:r2744
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index 12437317e..66aa4918e 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 |