[srvx-commits] CVS: services/src chanserv.c,1.393,1.394
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-11-21 13:21:25
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv23502/src Modified Files: chanserv.c Log Message: mark an in-channel suspended user as last seen at their suspension (closes #846352) Index: chanserv.c =================================================================== RCS file: /cvsroot/srvx/services/src/chanserv.c,v retrieving revision 1.393 retrieving revision 1.394 diff -C2 -r1.393 -r1.394 *** chanserv.c 20 Nov 2003 13:45:15 -0000 1.393 --- chanserv.c 21 Nov 2003 13:21:21 -0000 1.394 *************** *** 5694,5697 **** --- 5694,5702 ---- return 0; } + if(target->present) + { + target->present = 0; + target->seen = now; + } target->flags |= USER_SUSPENDED; chanserv_notice(user, CSMSG_USER_SUSPENDED, hi->handle, channel->name); |