tor

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

commit c2d558b955def24acd6150145fc1d3091f7ab3a3
parent d16268c2c79584028e1f07d3718eec9a601e1676
Author: David Goulet <dgoulet@torproject.org>
Date:   Wed, 10 Sep 2025 13:53:59 -0400

config: Fix wide comment

Signed-off-by: David Goulet <dgoulet@torproject.org>

Diffstat:
Msrc/app/config/config.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/app/config/config.c b/src/app/config/config.c @@ -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;