mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge branch 'bug11654_squashed'
This commit is contained in:
commit
a2b59dba71
4
changes/bug11654
Normal file
4
changes/bug11654
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- Fix a broken log message about delayed directory fetches that
|
||||||
|
was caused by a misuse of strlcpy(). Fixes bug 11654; bugfix on
|
||||||
|
0.2.5.3-alpha.
|
@ -1510,8 +1510,8 @@ update_router_have_minimum_dir_info(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (should_delay_dir_fetches(get_options(), &delay_fetches_msg)) {
|
if (should_delay_dir_fetches(get_options(), &delay_fetches_msg)) {
|
||||||
log_notice(LD_DIR, "Delaying dir fetches: %s", delay_fetches_msg);
|
log_notice(LD_DIR, "Delaying directory fetches: %s", delay_fetches_msg);
|
||||||
strlcpy(dir_info_status, "%s", sizeof(dir_info_status));
|
strlcpy(dir_info_status, delay_fetches_msg, sizeof(dir_info_status));
|
||||||
res = 0;
|
res = 0;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user