diff options
author | Timo Sirainen <cras@irssi.org> | 2000-04-28 08:07:42 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-04-28 08:07:42 +0000 |
commit | a5a66264de2f56c5b1ba00e0228eae61f70d5689 (patch) | |
tree | 981b0663ff753f754cd0204b742ea12bff0d5e56 /src/irc | |
parent | 9cbf26d5199bdd1f3bd29fb27f181af4b94de02e (diff) | |
download | irssi-a5a66264de2f56c5b1ba00e0228eae61f70d5689.zip |
Perl working again, better than ever (unless there's bugs :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@191 dbcabf3a-b0e7-0310-adc4-f8d773084564
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 |