diff options
author | juga0 <juga@riseup.net> | 2018-11-06 14:49:20 +0000 |
---|---|---|
committer | juga0 <juga@riseup.net> | 2019-02-13 12:26:00 +0000 |
commit | fc3e90a7b64714f30c19572900523078e8e7c0d6 (patch) | |
tree | 9116ffebd2794c72bbf908c69c1c1a1d51f0e374 /src/app/config | |
parent | c320c52e89d0d950f0316d2c2f070f7adca66c80 (diff) | |
download | tor-fc3e90a7b64714f30c19572900523078e8e7c0d6.tar.gz tor-fc3e90a7b64714f30c19572900523078e8e7c0d6.zip |
bwauth: Add function to get the digest of a bw file
Diffstat (limited to 'src/app/config')
-rw-r--r-- | src/app/config/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 8e4794315f..7734c19a04 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -3554,7 +3554,8 @@ options_validate(or_options_t *old_options, or_options_t *options, "(Bridge/V3)AuthoritativeDir is set."); /* If we have a v3bandwidthsfile and it's broken, complain on startup */ if (options->V3BandwidthsFile && !old_options) { - dirserv_read_measured_bandwidths(options->V3BandwidthsFile, NULL, NULL); + dirserv_read_measured_bandwidths(options->V3BandwidthsFile, NULL, NULL, + NULL); } /* same for guardfraction file */ if (options->GuardfractionFile && !old_options) { |