diff options
author | Dominique Ingoglia <ingoglia@protonmail.com> | 2018-02-10 14:33:14 -0700 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-23 19:13:15 +1000 |
commit | 8747afc5e0504178f70ac113977e05ccf6d5626e (patch) | |
tree | ba120b0658e0ee89d589ce8ecaf509f759f37ea8 /src/app | |
parent | ac44e70ffc047941d196596dd651019c054b7faf (diff) | |
download | tor-8747afc5e0504178f70ac113977e05ccf6d5626e.tar.gz tor-8747afc5e0504178f70ac113977e05ccf6d5626e.zip |
Change the wording of the DirCache warning
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 1b1889779d..1502754ec9 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -4714,8 +4714,7 @@ have_enough_mem_for_dircache(const or_options_t *options, size_t total_mem, } else { if (total_mem >= DIRCACHE_MIN_MEM_BYTES) { *msg = tor_strdup("DirCache is disabled and we are configured as a " - "relay. This may disqualify us from becoming a guard in the " - "future."); + "relay. Many client versions will not choose us as a guard. "); } } return *msg == NULL ? 0 : -1; |