[srvx-commits] CVS: services/src chanserv.c,1.288,1.289
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-10-11 03:05:58
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv27078/src
Modified Files:
chanserv.c
Log Message:
due to ACCOUNT support, users might be authed during a burst
Index: chanserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/chanserv.c,v
retrieving revision 1.288
retrieving revision 1.289
diff -C2 -r1.288 -r1.289
*** chanserv.c 24 Sep 2002 19:22:05 -0000 1.288
--- chanserv.c 11 Oct 2002 03:05:53 -0000 1.289
***************
*** 5892,5899 ****
}
! /* Users aren't going to be authenticated to NickServ during a burst,
! so we might as well short-circuit all of this stuff during bursts.
! */
! if(user->uplink->burst) return;
if((channel == chanserv_conf.support_channel) && IsHelper(user))
--- 5892,5897 ----
}
! /* Everything below here depends on the user being authed. */
! if(!user->handle_info) return;
if((channel == chanserv_conf.support_channel) && IsHelper(user))
|