[X2serv-cvs] CVS: x2/source config.h,1.57,1.58 user.c,1.32,1.33
Brought to you by:
sirvulcan
From: Alex S. <ru...@us...> - 2001-04-10 01:11:21
|
Update of /cvsroot/x2serv/x2/source In directory usw-pr-cvs1:/tmp/cvs-serv2548 Modified Files: config.h user.c Log Message: Removed the "#define notices" feature from the soruce, since enabling it caused x2 not to compile. (The ircd can announce users now) Index: config.h =================================================================== RCS file: /cvsroot/x2serv/x2/source/config.h,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -r1.57 -r1.58 *** config.h 2001/03/02 13:00:55 1.57 --- config.h 2001/04/10 01:11:17 1.58 *************** *** 85,93 **** #define NOWAREZCHANS - /* Notices makes X2 announce client connect/exit messages in #notices. - * This was added when the Undernet 2.10 code did not send them. It's - * been fixed in the .02 patches, so now I disable it. */ - #undef notices - /* `pinging' instructs X2 to ping the server to see if it has a dead * connection--this is a GOOD idea... */ --- 85,88 ---- Index: user.c =================================================================== RCS file: /cvsroot/x2serv/x2/source/user.c,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** user.c 2001/01/22 13:33:12 1.32 --- user.c 2001/04/10 01:11:17 1.33 *************** *** 461,472 **** UpdateCloneCount(CurrPtrN->UserID, CurrPtrN->Address, CurrPtrN->Clones - 1, UsersA); - #ifdef notices - if (!nickchange && sendnotice) - { - send_wallchops("#Notices", "Signoff %s!%s@%s (%s)", - uptr->Nick, CurrPtrnN->UserID, CurrPtrN->Address, CurrPtrN->Serv); - } - #endif - /* Go down the list of channels this user is logged into, and clear them out */ for(ahptr = uptr->AuthHandles; ahptr; ahptr = ahptr_next) --- 461,464 ---- |