From 4cf6d9092b12cf5350e271bc5bf1f7f2c98dfd24 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 12 Sep 2024 10:55:54 +0100 Subject: [PATCH] [Minor] Slight explanations of the decision made --- src/fuzzy_storage.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/fuzzy_storage.c b/src/fuzzy_storage.c index 770f428ad..33bb14418 100644 --- a/src/fuzzy_storage.c +++ b/src/fuzzy_storage.c @@ -1604,6 +1604,9 @@ rspamd_fuzzy_process_command(struct fuzzy_session *session) /* Check expire */ static ev_tstamp today = NAN; + /* + * Update `today` sometimes + */ if (isnan(today)) { today = ev_time(); } @@ -3024,8 +3027,8 @@ fuzzy_add_keypair_from_ucl(struct rspamd_config *cfg, const ucl_object_t *obj, } } - msg_debug("loaded keypair %*bs; expire=%f; rate=%f; burst=%s", crypto_box_publickeybytes(), pk, - key->expire, key->rate, key->burst); + msg_debug("loaded keypair %*bs; expire=%f; rate=%f; burst=%s; name=%s", crypto_box_publickeybytes(), pk, + key->expire, key->rate, key->burst, key->name); return key; } -- 2.39.5