diff options
author | teor <teor@torproject.org> | 2018-08-23 19:10:39 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-23 19:13:25 +1000 |
commit | 692efdad0908232bb50d94b1a7cfef7d071962a5 (patch) | |
tree | 2d9f8f117a5ffa6017793fee5bec8a47e4002e03 /src/app | |
parent | 8747afc5e0504178f70ac113977e05ccf6d5626e (diff) | |
download | tor-692efdad0908232bb50d94b1a7cfef7d071962a5.tar.gz tor-692efdad0908232bb50d94b1a7cfef7d071962a5.zip |
Update the message logged on relays when DirCache is disabled
Since 0.3.3.5-rc, authorities require DirCache (V2Dir) for the Guard
flag.
Fixes bug 24312; bugfix on 0.3.3.5-rc.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 1502754ec9..1a43c7fd5b 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -4714,7 +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. Many client versions will not choose us as a guard. "); + "relay. We will not become a Guard."); } } return *msg == NULL ? 0 : -1; |