mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
bwauth: use flag to do not warn when file is missing
Use flag to do not warn when the bandwidth file is missing trying to serve it by http. Also remove double space in the assignement.
This commit is contained in:
parent
3eacae42b2
commit
ee09e5d7ea
1 changed files with 2 additions and 1 deletions
|
@ -1451,7 +1451,8 @@ handle_get_next_bandwidth(dir_connection_t *conn,
|
|||
const or_options_t *options = get_options();
|
||||
if (options->V3BandwidthsFile) {
|
||||
int lifetime = 60;
|
||||
char *bandwidth = read_file_to_str(options->V3BandwidthsFile, 0, NULL);
|
||||
char *bandwidth = read_file_to_str(options->V3BandwidthsFile,
|
||||
RFTS_IGNORE_MISSING, NULL);
|
||||
size_t len = strlen(bandwidth);
|
||||
write_http_response_header(conn, len, NO_METHOD, lifetime);
|
||||
connection_buf_add(bandwidth, len, TO_CONN(conn));
|
||||
|
|
Loading…
Add table
Reference in a new issue