diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-01-03 21:19:46 +0100 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2016-01-03 21:26:57 +0100 |
commit | dbee606c60c4d8d7c6e5cabd1241fc182ae6c4a3 (patch) | |
tree | 1c7339c5a1d2ea1a1e1cbb865ae37935fe31753e /src/core/ignore.c | |
parent | 609f3ba6c2db4f04e1e11304459d4fc42babd8ff (diff) | |
download | irssi-dbee606c60c4d8d7c6e5cabd1241fc182ae6c4a3.zip |
Don't break the API.
Have a ignore_find_full method that is the one that all the new code
should be using and provide some working stubs for ignore_find and
ignore_find_noact.
Diffstat (limited to 'src/core/ignore.c')
-rw-r--r-- | src/core/ignore.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/core/ignore.c b/src/core/ignore.c index ee9e180d..8d5a27c2 100644 --- a/src/core/ignore.c +++ b/src/core/ignore.c @@ -186,7 +186,7 @@ int ignore_check(SERVER_REC *server, const char *nick, const char *host, return ignore_check_replies(chanrec, text, level); } -IGNORE_REC *ignore_find(const char *servertag, const char *mask, const char *pattern, +IGNORE_REC *ignore_find_full(const char *servertag, const char *mask, const char *pattern, char **channels, const int flags) { GSList *tmp; @@ -257,6 +257,16 @@ IGNORE_REC *ignore_find(const char *servertag, const char *mask, const char *pat return NULL; } +IGNORE_REC *ignore_find(const char *servertag, const char *mask, char **channels) +{ + return ignore_find_full(servertag, mask, NULL, channels, 0); +} + +IGNORE_REC *ignore_find_noact(const char *servertag, const char *mask, char **channels, int noact) +{ + return ignore_find_full(servertag, mask, NULL, channels, IGNORE_FIND_NOACT); +} + static void ignore_set_config(IGNORE_REC *rec) { CONFIG_NODE *node; |