[srvx-commits] CVS: services/src chanserv.c,1.325,1.326
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-12-31 23:59:40
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv6430/src
Modified Files:
chanserv.c
Log Message:
protect users from each other when protect option is 0 ('a') -- patch credits to Byte
Index: chanserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/chanserv.c,v
retrieving revision 1.325
retrieving revision 1.326
diff -C2 -r1.325 -r1.326
*** chanserv.c 30 Dec 2002 01:10:54 -0000 1.325
--- chanserv.c 31 Dec 2002 23:59:35 -0000 1.326
***************
*** 1509,1512 ****
--- 1509,1513 ----
if(cs_victim->access > cs_aggressor->access) return 1;
break;
+ case 'a':
case 'e':
if(cs_victim->access >= cs_aggressor->access) return 1;
|