[srvx-commits] CVS: services/src chanserv.c,1.299,1.300
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-10-28 02:27:15
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv29331/src
Modified Files:
chanserv.c
Log Message:
fix previous commit to make sure the master-or-above is actually in the channel
Index: chanserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/chanserv.c,v
retrieving revision 1.299
retrieving revision 1.300
diff -C2 -r1.299 -r1.300
*** chanserv.c 28 Oct 2002 02:01:45 -0000 1.299
--- chanserv.c 28 Oct 2002 02:27:12 -0000 1.300
***************
*** 1446,1450 ****
for(user=channel->users; user; user=user->next)
{
! if(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;
|