diff options
author | cebka@lenovo-laptop <cebka@lenovo-laptop> | 2010-03-15 21:17:31 +0300 |
---|---|---|
committer | cebka@lenovo-laptop <cebka@lenovo-laptop> | 2010-03-15 21:17:31 +0300 |
commit | ff726239c58b83fb0823423e853afcae1785506b (patch) | |
tree | 1d268dc151f08b46824b9f24ffa2a75ce3a6c801 /src/controller.c | |
parent | 32b812257da7a72c08a1cc4ebb91b2fec129902a (diff) | |
download | rspamd-ff726239c58b83fb0823423e853afcae1785506b.tar.gz rspamd-ff726239c58b83fb0823423e853afcae1785506b.zip |
* Fix learn command (-m is used instead -w)
Diffstat (limited to 'src/controller.c')
-rw-r--r-- | src/controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.c b/src/controller.c index 50b2b5f34..3bafeaa05 100644 --- a/src/controller.c +++ b/src/controller.c @@ -533,7 +533,7 @@ process_command (struct controller_command *cmd, char **cmd_args, struct control case 'm': arg = *(cmd_args + 1); if (!arg || *arg == '\0') { - r = snprintf (out_buf, sizeof (out_buf), "recipient is not defined" CRLF); + r = snprintf (out_buf, sizeof (out_buf), "multiplier is not defined" CRLF); rspamd_dispatcher_write (session->dispatcher, out_buf, r, FALSE, FALSE); return; } |