[X2serv-cvs] CVS: x2/source chan.c,1.74,1.75
Brought to you by:
sirvulcan
From: Alex S. <ru...@us...> - 2001-04-13 01:40:59
|
Update of /cvsroot/x2serv/x2/source In directory usw-pr-cvs1:/tmp/cvs-serv2781/source Modified Files: chan.c Log Message: Fixed a bug where the "INCHAN" setting of automatically expired channels was still set to 1, causing crashes later when x2 tried to manipulate the topic which was NULL. Index: chan.c =================================================================== RCS file: /cvsroot/x2serv/x2/source/chan.c,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -r1.74 -r1.75 *** chan.c 2001/03/26 23:54:38 1.74 --- chan.c 2001/04/13 01:40:52 1.75 *************** *** 1854,1857 **** --- 1854,1858 ---- /* Regged...*/ cptr->Regged = FALSE; + cptr->settings[INCHAN] = 0; /* The channel is now Unregistered. */ } |