Fix the spelling of maxunmeasur(e)dbw.

This has been misspelled when using consensus method 31 or later
since 0.4.6.1-alpha.  Fixes bug 40869.

This commit is a backport of b9b0abd6c2 to 0.4.8.
This commit is contained in:
Nick Mathewson 2023-10-05 23:28:05 -04:00
parent c11ba9dea8
commit 8c22fd4a4d
2 changed files with 4 additions and 1 deletions

3
changes/bug40869 Normal file
View File

@ -0,0 +1,3 @@
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.

View File

@ -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;
}