commit 1b7e2979854061b46045e5db5d9aa82e0f6c6081 Author: Nick Mathewson nickm@torproject.org Date: Mon Apr 28 12:25:52 2014 -0400
Fix capitalization of MaxMemInQueues
This won't affect anybody's configuration, but it makes it match what we documented. Fixes part of 11634. --- src/or/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/config.c b/src/or/config.c index b8aa7d3..7850e52 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -308,7 +308,7 @@ static config_var_t option_vars_[] = { V(MaxAdvertisedBandwidth, MEMUNIT, "1 GB"), V(MaxCircuitDirtiness, INTERVAL, "10 minutes"), V(MaxClientCircuitsPending, UINT, "32"), - VAR("MaxMeminQueues", MEMUNIT, MaxMemInQueues_raw, "0"), + VAR("MaxMemInQueues", MEMUNIT, MaxMemInQueues_raw, "0"), OBSOLETE("MaxOnionsPending"), V(MaxOnionQueueDelay, MSEC_INTERVAL, "1750 msec"), V(MinMeasuredBWsForAuthToIgnoreAdvertised, INT, "500"),
tor-commits@lists.torproject.org