mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 00:52:30 +02:00
Moved ignore to core.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@725 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
77fcb9de52
commit
3c78d95614
9 changed files with 29 additions and 26 deletions
|
|
@ -120,7 +120,7 @@ static void ctcp_msg(const char *data, IRC_SERVER_REC *server,
|
|||
{
|
||||
char *args, *str;
|
||||
|
||||
if (ignore_check(server, nick, addr, target, data, MSGLEVEL_CTCPS))
|
||||
if (ignore_check(SERVER(server), nick, addr, target, data, MSGLEVEL_CTCPS))
|
||||
return;
|
||||
|
||||
str = g_strconcat("ctcp msg ", data, NULL);
|
||||
|
|
@ -140,7 +140,7 @@ static void ctcp_reply(const char *data, IRC_SERVER_REC *server,
|
|||
{
|
||||
char *args, *str;
|
||||
|
||||
if (ignore_check(server, nick, addr, target, data, MSGLEVEL_CTCPS))
|
||||
if (ignore_check(SERVER(server), nick, addr, target, data, MSGLEVEL_CTCPS))
|
||||
return;
|
||||
|
||||
str = g_strconcat("ctcp reply ", data, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue