]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Whoops: test the "wrong" name for maxunmeasurdbw (sic).
authorNick Mathewson <nickm@torproject.org>
Thu, 5 Oct 2023 12:59:51 +0000 (08:59 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 5 Oct 2023 13:07:37 +0000 (09:07 -0400)
Now that we never use an earlier consensus method, our tests actually
hit this, and we find that we have misspelled "maxunmeasurdbw" (sic) in
dirvote.c.

I have opened ticket #40869 to track this misspelling.

src/test/test_dir.c

index 87aaef7fe67b15d312d287b106bba9a73c041262..baf67be4f85a6006cbf3c0b56e80e06c2be7ff64 100644 (file)
@@ -4107,7 +4107,7 @@ vote_tweaks_for_umbw(networkstatus_t *v, int voter, time_t now)
                          NULL, 0, -1);
   /* If we're using a non-default clip bandwidth, add it to net_params */
   if (alternate_clip_bw > 0) {
-    tor_asprintf(&maxbw_param, "maxunmeasuredbw=%u", alternate_clip_bw);
+    tor_asprintf(&maxbw_param, "maxunmeasurdbw=%u", alternate_clip_bw);
     tt_assert(maxbw_param);
     if (maxbw_param) {
       smartlist_add(v->net_params, maxbw_param);