summaryrefslogtreecommitdiff
path: root/src/fe-common
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-common')
-rw-r--r--src/fe-common/core/fe-ignore.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fe-common/core/fe-ignore.c b/src/fe-common/core/fe-ignore.c
index 7c10893f..c291e847 100644
--- a/src/fe-common/core/fe-ignore.c
+++ b/src/fe-common/core/fe-ignore.c
@@ -84,9 +84,9 @@ static void cmd_ignore_show(void)
}
/* SYNTAX: IGNORE [-regexp | -word] [-pattern <pattern>] [-except] [-replies]
- [-channels <channel>] [-time <secs>] <mask> <levels>
+ [-channels <channel>] [-time <secs>] <mask> [<levels>]
IGNORE [-regexp | -word] [-pattern <pattern>] [-except] [-replies]
- [-time <secs>] <channels> <levels> */
+ [-time <secs>] <channels> [<levels>] */
static void cmd_ignore(const char *data)
{
GHashTable *optlist;
@@ -108,7 +108,8 @@ static void cmd_ignore(const char *data)
patternarg = g_hash_table_lookup(optlist, "pattern");
chanarg = g_hash_table_lookup(optlist, "channels");
- if (*levels == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
+ if (*mask == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
+ if (*levels == '\0') levels = "ALL";
if (active_win->active_server != NULL &&
active_win->active_server->ischannel(mask)) {