]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
config: Fix wide comment
authorDavid Goulet <dgoulet@torproject.org>
Wed, 10 Sep 2025 17:53:59 +0000 (13:53 -0400)
committerDavid Goulet <dgoulet@torproject.org>
Wed, 10 Sep 2025 17:53:59 +0000 (13:53 -0400)
Signed-off-by: David Goulet <dgoulet@torproject.org>
src/app/config/config.c

index e42bc3301e0145e5df93057969c6f3dd6a4f9880..6fb892748f5206ab2f49b2f82f9d475c9c0a0f7b 100644 (file)
@@ -3536,7 +3536,8 @@ options_validate_cb(const void *old_options_, void *options_, char **msg)
                                    server_mode(options));
   options->MaxMemInQueues_low_threshold = (options->MaxMemInQueues / 4) * 3;
 
-  /* Process MaxHSDirCacheBytes. If not set (0), use MaxMemInQueues / 5 as default. */
+  /* Process MaxHSDirCacheBytes. If not set (0), use MaxMemInQueues / 5 as
+   * default. */
   if (options->MaxHSDirCacheBytes == 0) {
     /* Default to MaxMemInQueues / 5 for HS directory cache (20%) */
     options->MaxHSDirCacheBytes = options->MaxMemInQueues / 5;