Commit aa5e8510 authored by David Goulet's avatar David Goulet 🐼
Browse files

Merge branch 'bug40869_048' into 'maint-0.4.8'

Fix the spelling of maxunmeasur(e)dbw (backport to 0.4.8)

See merge request tpo/core/tor!774
parents c11ba9de 8c22fd4a
Loading
Loading
Loading
Loading

changes/bug40869

0 → 100644
+3 −0
Original line number Diff line number Diff line
  o Minor bugfixes (directory authority):
    - Look at the network parameter "maxunmeasuredbw" with the
      correct spelling.  Fixes bug 40869; bugfix on 0.4.6.1-alpha.
+1 −1
Original line number Diff line number Diff line
@@ -1781,7 +1781,7 @@ networkstatus_compute_consensus(smartlist_t *votes,
                  params, "maxunmeasuredbw", DEFAULT_MAX_UNMEASURED_BW_KB);
    } else {
      max_unmeasured_bw_kb = dirvote_get_intermediate_param_value(
                  param_list, "maxunmeasurdbw", DEFAULT_MAX_UNMEASURED_BW_KB);
                  param_list, "maxunmeasuredbw", DEFAULT_MAX_UNMEASURED_BW_KB);
      if (max_unmeasured_bw_kb < 1)
        max_unmeasured_bw_kb = 1;
    }