From 7335285cdff9a1cf8b2c779793b96aa52d06bc4c Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Mon, 13 Mar 2017 11:21:11 +0200 Subject: [PATCH] [Minor] Fix help text --- src/rspamadm/fuzzy_convert.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rspamadm/fuzzy_convert.c b/src/rspamadm/fuzzy_convert.c index 84e7b4e5f..dc15b7e38 100644 --- a/src/rspamadm/fuzzy_convert.c +++ b/src/rspamadm/fuzzy_convert.c @@ -56,7 +56,7 @@ rspamadm_fuzzyconvert_help (gboolean full_help) const char *help_str; if (full_help) { - help_str = "Convert statistics from sqlite3 to redis\n\n" + help_str = "Convert fuzzy hashes from sqlite3 to redis\n\n" "Usage: rspamadm fuzzyconvert -d -h \n" "Where options are:\n\n" "-d: input sqlite\n" @@ -65,7 +65,7 @@ rspamadm_fuzzyconvert_help (gboolean full_help) "-p: redis password\n"; } else { - help_str = "Convert statistics from sqlite3 to redis"; + help_str = "Convert fuzzy hashes from sqlite3 to redis"; } return help_str; @@ -80,7 +80,7 @@ rspamadm_fuzzyconvert (gint argc, gchar **argv) ucl_object_t *obj; context = g_option_context_new ( - "fuzzyconvert - converts statistics from sqlite3 to redis"); + "fuzzyconvert - converts fuzzy hashes from sqlite3 to redis"); g_option_context_set_summary (context, "Summary:\n Rspamd administration utility version " RVERSION -- 2.39.5