mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
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
This commit is contained in:
parent
9cbf26d519
commit
a5a66264de
43 changed files with 1510 additions and 1004 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue