mirror of
https://github.com/weechat/weechat.git
synced 2026-07-02 15:53:12 +02:00
irc: use extended regex in command /ignore
This commit is contained in:
@@ -146,7 +146,7 @@ irc_ignore_new (const char *mask, const char *server, const char *channel)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (regcomp (regex, complete_mask, REG_NOSUB | REG_ICASE) != 0)
|
||||
if (regcomp (regex, complete_mask, REG_NOSUB | REG_ICASE | REG_EXTENDED) != 0)
|
||||
{
|
||||
free (regex);
|
||||
free (complete_mask);
|
||||
|
||||
Reference in New Issue
Block a user