[srvx-commits] CVS: services/src helpserv.c,1.56,1.57
Brought to you by:
entrope
|
From: Adrian D. <sai...@us...> - 2002-12-15 21:45:58
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv24084
Modified Files:
helpserv.c
Log Message:
Always record helpers as joining (even during the initial burst) to make sure their time is properly credited.
Index: helpserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/helpserv.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -r1.56 -r1.57
*** helpserv.c 15 Dec 2002 06:41:38 -0000 1.56
--- helpserv.c 15 Dec 2002 21:45:54 -0000 1.57
***************
*** 3547,3554 ****
struct helpserv_bot *hs=botlist->list[i];
- if (self->uplink->burst && !hs->req_on_join) continue;
-
- associate_requests_bybot(hs, user, 1);
-
if (user->handle_info) {
struct helpserv_user *hs_user;
--- 3547,3550 ----
***************
*** 3565,3568 ****
--- 3561,3568 ----
}
}
+
+ if (self->uplink->burst && !hs->req_on_join) continue;
+
+ associate_requests_bybot(hs, user, 1);
helpserv_message(hs, user, MSGTYPE_GREETING);
|