From: Andrew Lewis Date: Mon, 13 Mar 2017 09:21:11 +0000 (+0200) Subject: [Minor] Fix help text X-Git-Tag: 1.5.3~45^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7335285cdff9a1cf8b2c779793b96aa52d06bc4c;p=rspamd.git [Minor] Fix help text --- 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