aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-04-28 12:25:52 -0400
committerNick Mathewson <nickm@torproject.org>2014-04-28 12:25:52 -0400
commit1b7e2979854061b46045e5db5d9aa82e0f6c6081 (patch)
tree5928012e2d086e3a7048001e7e3115d0abbd9826
parente05f73259973001927db3de8a0f2c890a99d2f5c (diff)
downloadtor-1b7e2979854061b46045e5db5d9aa82e0f6c6081.tar
tor-1b7e2979854061b46045e5db5d9aa82e0f6c6081.tar.gz
Fix capitalization of MaxMemInQueues
This won't affect anybody's configuration, but it makes it match what we documented. Fixes part of 11634.
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index b8aa7d369..7850e5227 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"),