[srvx-commits] CVS: services/src proto-p10.c,1.49,1.50
Brought to you by:
entrope
|
From: Zoot <zo...@us...> - 2002-12-15 19:44:45
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv16011/src
Modified Files:
proto-p10.c
Log Message:
Fix ChanServ's lame join-multiple-times tricks. (Also known as bursting into a channel multiple times.)
Index: proto-p10.c
===================================================================
RCS file: /cvsroot/srvx/services/src/proto-p10.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -r1.49 -r1.50
*** proto-p10.c 15 Dec 2002 18:41:25 -0000 1.49
--- proto-p10.c 15 Dec 2002 19:44:42 -0000 1.50
***************
*** 976,980 ****
}
! if (self->burst && (cNode = GetChannel(argv[1]))) {
cNode->timestamp = atoi(argv[2]);
dict_remove(unbursted_channels, cNode->name);
--- 976,980 ----
}
! if (self->burst && (cNode = GetChannel(argv[1])) && dict_find(unbursted_channels, cNode->name, NULL)) {
cNode->timestamp = atoi(argv[2]);
dict_remove(unbursted_channels, cNode->name);
|