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:
Timo Sirainen 2000-12-05 21:12:52 +00:00 committed by cras
commit 9f2f1dc70a
32 changed files with 246 additions and 225 deletions

View file

@ -37,7 +37,7 @@ static void sig_log_written(LOG_REC *log)
away_msgs++;
}
static void event_away(const char *data, IRC_SERVER_REC *server)
static void event_away(IRC_SERVER_REC *server, const char *data)
{
const char *fname, *levelstr;
LOG_REC *log;
@ -71,7 +71,7 @@ static void event_away(const char *data, IRC_SERVER_REC *server)
away_msgs = 0;
}
static void event_unaway(const char *data, IRC_SERVER_REC *server)
static void event_unaway(IRC_SERVER_REC *server, const char *data)
{
const char *fname;
LOG_REC *log;