diff options
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/notifylist/notify-ison.c | 2 | ||||
-rw-r--r-- | src/irc/notifylist/notifylist.c | 4 | ||||
-rw-r--r-- | src/irc/notifylist/notifylist.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/irc/notifylist/notify-ison.c b/src/irc/notifylist/notify-ison.c index 46aaa3b6..b03f9a2e 100644 --- a/src/irc/notifylist/notify-ison.c +++ b/src/irc/notifylist/notify-ison.c @@ -127,7 +127,7 @@ static void notifylist_timeout_server(IRC_SERVER_REC *server) for (tmp = notifies; tmp != NULL; tmp = tmp->next) { NOTIFYLIST_REC *rec = tmp->data; - if (!notify_ircnets_match(rec, server->connrec->ircnet)) + if (!notifylist_ircnets_match(rec, server->connrec->ircnet)) continue; nick = g_strdup(rec->mask); diff --git a/src/irc/notifylist/notifylist.c b/src/irc/notifylist/notifylist.c index 00561dc9..17adb3da 100644 --- a/src/irc/notifylist/notifylist.c +++ b/src/irc/notifylist/notifylist.c @@ -85,7 +85,7 @@ void notifylist_remove(const char *mask) notify_destroy(rec); } -int notify_ircnets_match(NOTIFYLIST_REC *rec, const char *ircnet) +int notifylist_ircnets_match(NOTIFYLIST_REC *rec, const char *ircnet) { char **tmp; @@ -122,7 +122,7 @@ NOTIFYLIST_REC *notifylist_find(const char *mask, const char *ircnet) continue; } - if (notify_ircnets_match(rec, ircnet)) + if (notifylist_ircnets_match(rec, ircnet)) return rec; } diff --git a/src/irc/notifylist/notifylist.h b/src/irc/notifylist/notifylist.h index 0d4f3739..65ce4d18 100644 --- a/src/irc/notifylist/notifylist.h +++ b/src/irc/notifylist/notifylist.h @@ -27,6 +27,6 @@ int notifylist_ison_server(IRC_SERVER_REC *server, const char *nick); /* If `ircnet' is "*", it doesn't matter at all. */ NOTIFYLIST_REC *notifylist_find(const char *mask, const char *ircnet); -int notify_ircnets_match(NOTIFYLIST_REC *rec, const char *ircnet); +int notifylist_ircnets_match(NOTIFYLIST_REC *rec, const char *ircnet); #endif |