summaryrefslogtreecommitdiffstats
path: root/src/rspamadm/fuzzy_convert.c
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2017-03-13 11:21:11 +0200
committerAndrew Lewis <nerf@judo.za.org>2017-03-13 11:21:11 +0200
commit7335285cdff9a1cf8b2c779793b96aa52d06bc4c (patch)
treee9c5abdf5b4c0bfe3d058e8b9792e45d12cacdc1 /src/rspamadm/fuzzy_convert.c
parentdfc2fe8153d1dc6a4271373059f215029ca4a2e1 (diff)
downloadrspamd-7335285cdff9a1cf8b2c779793b96aa52d06bc4c.tar.gz
rspamd-7335285cdff9a1cf8b2c779793b96aa52d06bc4c.zip
[Minor] Fix help text
Diffstat (limited to 'src/rspamadm/fuzzy_convert.c')
-rw-r--r--src/rspamadm/fuzzy_convert.c6
1 files 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 <sqlite_db> -h <redis_ip>\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