mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
Server events: switched order of data and server parameters. it's now
SERVER_REC *server, const char *data, .. hope this doesn't cause too many problems :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@967 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
346808789c
commit
9f2f1dc70a
32 changed files with 246 additions and 225 deletions
|
|
@ -169,7 +169,7 @@ static void channel_destroyed(IRC_CHANNEL_REC *channel)
|
|||
invitelist_free(channel);
|
||||
}
|
||||
|
||||
static void event_banlist(const char *data, IRC_SERVER_REC *server)
|
||||
static void event_banlist(IRC_SERVER_REC *server, const char *data)
|
||||
{
|
||||
IRC_CHANNEL_REC *chanrec;
|
||||
char *params, *channel, *ban, *setby, *tims;
|
||||
|
|
@ -186,7 +186,7 @@ static void event_banlist(const char *data, IRC_SERVER_REC *server)
|
|||
g_free(params);
|
||||
}
|
||||
|
||||
static void event_ebanlist(const char *data, IRC_SERVER_REC *server)
|
||||
static void event_ebanlist(IRC_SERVER_REC *server, const char *data)
|
||||
{
|
||||
IRC_CHANNEL_REC *chanrec;
|
||||
char *params, *channel, *ban, *setby, *tims;
|
||||
|
|
@ -203,7 +203,7 @@ static void event_ebanlist(const char *data, IRC_SERVER_REC *server)
|
|||
g_free(params);
|
||||
}
|
||||
|
||||
static void event_invite_list(const char *data, IRC_SERVER_REC *server)
|
||||
static void event_invite_list(IRC_SERVER_REC *server, const char *data)
|
||||
{
|
||||
IRC_CHANNEL_REC *chanrec;
|
||||
char *params, *channel, *invite;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue