From b6f7e23bbde7ae8c50360665a7ff2f0839e9219e Mon Sep 17 00:00:00 2001 From: David Goulet Date: Wed, 25 Apr 2018 14:12:38 -0400 Subject: [PATCH] clean_consdiffmgr() callback is only for directories Only relevant for directory servers. Signed-off-by: David Goulet --- src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/main.c b/src/or/main.c index ffe4073295..37eacd2c11 100644 --- 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;