[srvx-commits] CVS: services/src chanserv.c,1.300,1.301
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-10-28 02:27:51
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv29691/src
Modified Files:
chanserv.c
Log Message:
... someone shoot me, i cannot count parentheses. must have been that glass of wine with dinner ...
Index: chanserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/chanserv.c,v
retrieving revision 1.300
retrieving revision 1.301
diff -C2 -r1.300 -r1.301
*** chanserv.c 28 Oct 2002 02:27:12 -0000 1.300
--- chanserv.c 28 Oct 2002 02:27:49 -0000 1.301
***************
*** 1446,1450 ****
for(user=channel->users; user; user=user->next)
{
! if((user->present && (user->access >= ulMaster)) break;
}
if(user) continue;
--- 1446,1450 ----
for(user=channel->users; user; user=user->next)
{
! if(user->present && (user->access >= ulMaster)) break;
}
if(user) continue;
|