[srvx-commits] CVS: services/src chanserv.c,1.161.2.86,1.161.2.87
Brought to you by:
entrope
From: Zoot <zo...@us...> - 2001-10-23 20:08:47
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv24996/src Modified Files: Tag: rel-1_0 chanserv.c Log Message: Fix a dumb bug that caused ChanServ to essentially protect users when the channel options were set otherwise. Index: chanserv.c =================================================================== RCS file: /cvsroot/srvx/services/src/chanserv.c,v retrieving revision 1.161.2.86 retrieving revision 1.161.2.87 diff -C2 -r1.161.2.86 -r1.161.2.87 *** chanserv.c 2001/10/17 01:48:47 1.161.2.86 --- chanserv.c 2001/10/23 20:08:44 1.161.2.87 *************** *** 1490,1495 **** --- 1490,1497 ---- case 'l': if(cs_victim->access > cs_aggressor->access) return 1; + break; case 'e': if(cs_victim->access >= cs_aggressor->access) return 1; + break; } |