commit d67d3dd1456edf20e79bd1ba105536bdcdbfc4dc
parent 31fbbf2377846535848553938f6be233f3092702
Author: Nick Mathewson <nickm@torproject.org>
Date: Tue, 17 Apr 2018 19:39:50 -0400
Fix a copy-and-paste error from 6be994fa717cf73
Found by clang's scan-build too. Bug not in any released Tor.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/config.c b/src/or/config.c
@@ -2190,7 +2190,7 @@ options_act(const or_options_t *old_options)
if (options->BandwidthRate != old_options->BandwidthRate ||
options->BandwidthBurst != old_options->BandwidthBurst ||
- options->BandwidthRate != old_options->BandwidthRate ||
+ options->RelayBandwidthRate != old_options->RelayBandwidthRate ||
options->RelayBandwidthBurst != old_options->RelayBandwidthBurst)
connection_bucket_adjust(options);