diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/inbound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index 86442fa8..6931bdc1 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -237,7 +237,7 @@ alert_match_word (char *word, char *masks) { endchar = *p; *p = 0; - res = match (masks, word); + res = match (g_strchug (masks), word); *p = endchar; if (res) |