From b552cf8745b82e9ba8a27c45ec84664be174b5a5 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 7 Mar 2010 23:12:35 -0600 Subject: [PATCH] Fix order on channel_mlock() call. --- src/s_serv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s_serv.c b/src/s_serv.c index 2092cd1..65e8e0f 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -681,7 +681,7 @@ burst_TS6(struct Client *client_p) if(IsCapable(client_p, CAP_MLOCK)) sendto_one(client_p, ":%s MLOCK %ld %s %s", me.id, (long) chptr->channelts, chptr->chname, - channel_mlock(client_p, chptr)); + channel_mlock(chptr, client_p)); hchaninfo.chptr = chptr; call_hook(h_burst_channel, &hchaninfo);