]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
hs-v3: Fix typo in log info when PublishHidServDescriptors is set to 0
authorDavid Goulet <dgoulet@torproject.org>
Tue, 7 Apr 2020 17:17:21 +0000 (13:17 -0400)
committerDavid Goulet <dgoulet@torproject.org>
Tue, 7 Apr 2020 17:17:21 +0000 (13:17 -0400)
Fixes #33779

Signed-off-by: David Goulet <dgoulet@torproject.org>
changes/ticket33779 [new file with mode: 0644]
src/feature/hs/hs_service.c

diff --git a/changes/ticket33779 b/changes/ticket33779
new file mode 100644 (file)
index 0000000..d4bc769
--- /dev/null
@@ -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.
index 53e33f80eac1728702ac8214b417711d69736c66..5b8f661832339e52394ddcbdf561b6e3ee065cc1 100644 (file)
@@ -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;
   }