tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 0b0b8a5b6db5d5609d0c2530c18fb67e0950f9d1
parent 1720a2191d6b94e1847a2ad3a2c45c5e8de53bcd
Author: George Kadianakis <desnacked@riseup.net>
Date:   Wed,  8 Apr 2020 16:31:37 +0300

Merge branch 'tor-github/pr/1855'

Diffstat:
Achanges/ticket33779 | 3+++
Msrc/feature/hs/hs_service.c | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/changes/ticket33779 b/changes/ticket33779 @@ -0,0 +1,3 @@ + o Minor bugfixes (onion service, logging): + - Typo in a log info level when PublishHidServDescriptors is set to 0. + Fixes bug 33779; bugfix on 0.3.2.1-alpha. diff --git a/src/feature/hs/hs_service.c b/src/feature/hs/hs_service.c @@ -2846,7 +2846,7 @@ upload_descriptor_to_hsdir(const hs_service_t *service, /* Let's avoid doing that if tor is configured to not publish. */ if (!get_options()->PublishHidServDescriptors) { log_info(LD_REND, "Service %s not publishing descriptor. " - "PublishHidServDescriptors is set to 1.", + "PublishHidServDescriptors is set to 0.", safe_str_client(service->onion_address)); goto end; }