tor

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

commit b6f7e23bbde7ae8c50360665a7ff2f0839e9219e
parent 2748dd0f1c5587433f3ef791aa85b8a7aa54515a
Author: David Goulet <dgoulet@torproject.org>
Date:   Wed, 25 Apr 2018 14:12:38 -0400

clean_consdiffmgr() callback is only for directories

Only relevant for directory servers.

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

Diffstat:
Msrc/or/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/main.c b/src/or/main.c @@ -2318,7 +2318,7 @@ static int clean_consdiffmgr_callback(time_t now, const or_options_t *options) { (void)now; - if (server_mode(options)) { + if (dir_server_mode(options)) { consdiffmgr_cleanup(); } return CDM_CLEAN_CALLBACK_INTERVAL;