From: Vsevolod Stakhov Date: Thu, 12 Sep 2024 09:55:54 +0000 (+0100) Subject: [Minor] Slight explanations of the decision made X-Git-Tag: 3.10.0~18^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4cf6d9092b12cf5350e271bc5bf1f7f2c98dfd24;p=rspamd.git [Minor] Slight explanations of the decision made --- 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; }