diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-01-16 08:40:01 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-01-16 08:40:01 +0000 |
commit | a819525203b1e5f0628c4c529cc69aa7db888dcd (patch) | |
tree | b7602b3339b631a4f7962507a911590b4467b797 /src/fuzzy_storage.c | |
parent | 3c6ca1d3e76f23e9d442473c1ae97270ec8119de (diff) | |
download | rspamd-a819525203b1e5f0628c4c529cc69aa7db888dcd.tar.gz rspamd-a819525203b1e5f0628c4c529cc69aa7db888dcd.zip |
[Minor] Fix misprint
Diffstat (limited to 'src/fuzzy_storage.c')
-rw-r--r-- | src/fuzzy_storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fuzzy_storage.c b/src/fuzzy_storage.c index 99a5a3bed..3d2d7497f 100644 --- a/src/fuzzy_storage.c +++ b/src/fuzzy_storage.c @@ -1878,7 +1878,7 @@ rspamd_fuzzy_storage_stat_key (struct fuzzy_key_stat *key_stat) "checked_per_hour", 0, false); ucl_object_insert_key (res, ucl_object_fromint (key_stat->matched), "matched", 0, false); - ucl_object_insert_key (res, ucl_object_fromdouble(key_stat->checked_ctr.mean), + ucl_object_insert_key (res, ucl_object_fromdouble(key_stat->matched_ctr.mean), "matched_per_hour", 0, false); ucl_object_insert_key (res, ucl_object_fromint (key_stat->added), "added", 0, false); |