Fix order on channel_mlock() call.

This commit is contained in:
William Pitcock 2010-03-07 23:12:35 -06:00
parent 24cf9d8a28
commit b552cf8745
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ burst_TS6(struct Client *client_p)
if(IsCapable(client_p, CAP_MLOCK)) if(IsCapable(client_p, CAP_MLOCK))
sendto_one(client_p, ":%s MLOCK %ld %s %s", sendto_one(client_p, ":%s MLOCK %ld %s %s",
me.id, (long) chptr->channelts, chptr->chname, me.id, (long) chptr->channelts, chptr->chname,
channel_mlock(client_p, chptr)); channel_mlock(chptr, client_p));
hchaninfo.chptr = chptr; hchaninfo.chptr = chptr;
call_hook(h_burst_channel, &hchaninfo); call_hook(h_burst_channel, &hchaninfo);