Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv26848/src
Modified Files:
opserv.c
Log Message:
Properly check for valid channel names in trace.
Index: opserv.c
===================================================================
RCS file: /cvsroot/srvx/services/src/opserv.c,v
retrieving revision 1.251
retrieving revision 1.252
diff -C2 -r1.251 -r1.252
*** opserv.c 30 Jul 2002 19:38:56 -0000 1.251
--- opserv.c 1 Aug 2002 00:00:39 -0000 1.252
***************
*** 3203,3207 ****
discrim->chan_req_modes |= MODE_CHANOP;
break;
! case '0':
opserv_notice(user, MSG_NOT_CHANNEL_NAME);
goto fail;
--- 3203,3207 ----
discrim->chan_req_modes |= MODE_CHANOP;
break;
! case '\0':
opserv_notice(user, MSG_NOT_CHANNEL_NAME);
goto fail;
|