[srvx-commits] CVS: services/src nickserv.c,1.226,1.227
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-12 20:03:57
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv27145/src
Modified Files:
nickserv.c
Log Message:
do not unauth users when their account is suspended; instead, modcmd
will not let them use commands
Index: nickserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/nickserv.c,v
retrieving revision 1.226
retrieving revision 1.227
diff -C2 -r1.226 -r1.227
*** nickserv.c 10 Jan 2003 03:36:26 -0000 1.226
--- nickserv.c 12 Jan 2003 20:03:49 -0000 1.227
***************
*** 1866,1882 ****
}
- if (added & HI_FLAG_SUSPENDED) {
- struct userNode *un, *next;
-
- for (un = hi->users; un; un = next) {
- next = un->next_authed;
- un->handle_info = NULL;
- un->next_authed = NULL;
-
- nickserv_notice(un, NSMSG_HANDLE_SUSPENDED);
- }
- hi->users = NULL;
- }
-
if (after && !before) {
/* Add user to current helper list. */
--- 1866,1869 ----
|