[srvx-commits] CVS: services/src chanserv.c,1.401,1.402
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-12-23 13:59:22
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv6179/src Modified Files: chanserv.c Log Message: Fill in the part message before using it (duh) Index: chanserv.c =================================================================== RCS file: /cvsroot/srvx/services/src/chanserv.c,v retrieving revision 1.401 retrieving revision 1.402 diff -C2 -r1.401 -r1.402 *** chanserv.c 17 Dec 2003 04:21:52 -0000 1.401 --- chanserv.c 23 Dec 2003 13:59:16 -0000 1.402 *************** *** 1456,1462 **** if(channel->notes) dict_delete(channel->notes); if(!IsSuspended(channel)) DelChannelUser(chanserv, channel->channel, msgbuf, 0); - sprintf(msgbuf, "%s %s", channel->channel->name, reason); global_message(MESSAGE_RECIPIENT_OPERS | MESSAGE_RECIPIENT_HELPERS, msgbuf); UnlockChannel(channel->channel); --- 1456,1462 ---- if(channel->notes) dict_delete(channel->notes); + sprintf(msgbuf, "%s %s", channel->channel->name, reason); if(!IsSuspended(channel)) DelChannelUser(chanserv, channel->channel, msgbuf, 0); global_message(MESSAGE_RECIPIENT_OPERS | MESSAGE_RECIPIENT_HELPERS, msgbuf); UnlockChannel(channel->channel); |