diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-17 21:28:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-09-17 21:28:37 -0400 |
commit | 9e674d0eb4d83caab5298e83c837ebd58b0f5d3d (patch) | |
tree | 7d303b81a30eaf23d104a8722f70fff5601d642c /src | |
parent | a1f97bb25301811aa8dab7b250fb38918cee9332 (diff) | |
parent | 02840169d860384257042bdf6d7601c2bf48b47b (diff) | |
download | tor-9e674d0eb4d83caab5298e83c837ebd58b0f5d3d.tar.gz tor-9e674d0eb4d83caab5298e83c837ebd58b0f5d3d.zip |
Merge branch 'maint-0.3.5' into maint-0.4.0
Diffstat (limited to 'src')
-rw-r--r-- | src/feature/client/entrynodes.c | 3 | ||||
-rw-r--r-- | src/test/test_entrynodes.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c index 819f90a6d9..1bfb62538e 100644 --- a/src/feature/client/entrynodes.c +++ b/src/feature/client/entrynodes.c @@ -3765,7 +3765,8 @@ guard_selection_get_err_str_if_dir_info_missing(guard_selection_t *gs, /* otherwise return a helpful error string */ tor_asprintf(&ret_str, "We're missing descriptors for %d/%d of our " - "primary entry guards (total %sdescriptors: %d/%d).", + "primary entry guards (total %sdescriptors: %d/%d). " + "That's ok. We will try to fetch missing descriptors soon.", n_missing_descriptors, num_primary_to_check, using_mds?"micro":"", num_present, num_usable); diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c index 729795b674..9e213393b0 100644 --- a/src/test/test_entrynodes.c +++ b/src/test/test_entrynodes.c @@ -1731,7 +1731,8 @@ test_entry_guard_manage_primary(void *arg) dir_info_str =guard_selection_get_err_str_if_dir_info_missing(gs, 1, 2, 3); tt_str_op(dir_info_str, OP_EQ, "We're missing descriptors for 1/2 of our primary entry guards " - "(total microdescriptors: 2/3)."); + "(total microdescriptors: 2/3). That's ok. We will try to fetch " + "missing descriptors soon."); tor_free(dir_info_str); } |