diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-01-05 17:43:11 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-01-05 17:43:11 +0000 |
commit | bd126110d8a09888777fefa24382470b8b3d070e (patch) | |
tree | df80bd80c4a3111c48b8b06cc766e07f36e75db4 /src | |
parent | dd05bde5d626acbe62efb88312ed0f407c234ef9 (diff) | |
download | rspamd-bd126110d8a09888777fefa24382470b8b3d070e.tar.gz rspamd-bd126110d8a09888777fefa24382470b8b3d070e.zip |
Fix '--pass-all' option name.
Diffstat (limited to 'src')
-rw-r--r-- | src/client/rspamc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/rspamc.c b/src/client/rspamc.c index 3ed9f1dd4..c90ad1fc8 100644 --- a/src/client/rspamc.c +++ b/src/client/rspamc.c @@ -56,7 +56,7 @@ static GOptionEntry entries[] = { "classifier", 'c', 0, G_OPTION_ARG_STRING, &classifier, "Classifier to learn spam or ham", NULL }, { "weight", 'w', 0, G_OPTION_ARG_INT, &weight, "Weight for fuzzy operations", NULL }, { "flag", 'f', 0, G_OPTION_ARG_INT, &flag, "Flag for fuzzy operations", NULL }, - { "pass", 'p', 0, G_OPTION_ARG_NONE, &pass_all, "Pass all filters", NULL }, + { "pass-all", 'p', 0, G_OPTION_ARG_NONE, &pass_all, "Pass all filters", NULL }, { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "More verbose output", NULL }, { "ip", 'i', 0, G_OPTION_ARG_STRING, &ip, "Emulate that message was received from specified ip address", NULL }, { "user", 'u', 0, G_OPTION_ARG_STRING, &user, "Emulate that message was from specified user", NULL }, |