aboutsummaryrefslogtreecommitdiff
path: root/src/feature
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-04-09 11:35:41 +1000
committerteor <teor@torproject.org>2019-04-09 11:35:41 +1000
commit92e8bdf296c042ad386b2acb764bb4f4cfd2de0f (patch)
tree646d1c231880eca8aa0a32e84e0d00527d86345d /src/feature
parent61e6b217c5c83bc49e888f594f931c00c3e9b971 (diff)
parent5613968d57cb07cc5a66e97c58bd39c22b86a50a (diff)
downloadtor-92e8bdf296c042ad386b2acb764bb4f4cfd2de0f.tar.gz
tor-92e8bdf296c042ad386b2acb764bb4f4cfd2de0f.zip
Merge remote-tracking branch 'tor-github/pr/892' into maint-0.4.0
Diffstat (limited to 'src/feature')
-rw-r--r--src/feature/nodelist/networkstatus.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/feature/nodelist/networkstatus.c b/src/feature/nodelist/networkstatus.c
index 023115978c..a988f700f3 100644
--- a/src/feature/nodelist/networkstatus.c
+++ b/src/feature/nodelist/networkstatus.c
@@ -1761,8 +1761,11 @@ reload_consensus_from_file(const char *fname,
flavor, flags, source_dir);
#ifdef _WIN32
if (rv < 0 && tor_memstr(map->data, map->size, "\r\n")) {
- log_info(LD_GENERAL, "Found CRLF in consensus file %s; falling back to "
- "read_file_to_string.", escaped(fname));
+ log_notice(LD_GENERAL, "Looks like the above failures are probably "
+ "because of a CRLF in consensus file %s; falling back to "
+ "read_file_to_string. Nothing to worry about: this file "
+ "was probably saved by an earlier version of Tor.",
+ escaped(fname));
char *content = read_file_to_str(fname, RFTS_IGNORE_MISSING, NULL);
rv = networkstatus_set_current_consensus(content, strlen(content),
flavor, flags, source_dir);