commit 5031e42f2aee94e8cc0f14e9cae0ecc2af1444c3
parent 0f948693b771e8a8ccddeb269121fe2df62b5285
Author: David Goulet <dgoulet@torproject.org>
Date: Wed, 10 Sep 2025 13:54:04 -0400
Merge branch 'maint-0.4.8'
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/app/config/config.c b/src/app/config/config.c
@@ -3557,7 +3557,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;