[srvx-commits] CVS: services/src opserv.c,1.343,1.344 opserv.help,1.66,1.67
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-10-12 03:35:54
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv25385/src Modified Files: opserv.c opserv.help Log Message: change "linked" to "nickage" in trace criteria Index: opserv.c =================================================================== RCS file: /cvsroot/srvx/services/src/opserv.c,v retrieving revision 1.343 retrieving revision 1.344 diff -C2 -r1.343 -r1.344 *** opserv.c 12 Oct 2003 03:30:40 -0000 1.343 --- opserv.c 12 Oct 2003 03:35:50 -0000 1.344 *************** *** 2917,2921 **** } else if (irccasecmp(argv[i], "last") == 0) { discrim->min_ts = now - ParseInterval(argv[++i]); ! } else if (irccasecmp(argv[i], "linked") == 0) { const unsigned char *cmp = argv[++i]; if (cmp[0] == '<') { --- 2917,2922 ---- } else if (irccasecmp(argv[i], "last") == 0) { discrim->min_ts = now - ParseInterval(argv[++i]); ! } else if ((irccasecmp(argv[i], "linked") == 0) ! || (irccasecmp(argv[i], "nickage") == 0)) { const unsigned char *cmp = argv[++i]; if (cmp[0] == '<') { Index: opserv.help =================================================================== RCS file: /cvsroot/srvx/services/src/opserv.help,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -r1.66 -r1.67 *** opserv.help 30 Sep 2003 17:47:09 -0000 1.66 --- opserv.help 12 Oct 2003 03:35:51 -0000 1.67 *************** *** 76,81 **** "$bNUMCHANNELS$b 5 Specifies a number of channels the client must be in.", "$bLIMIT$b 50 Limits the number of responses to a certain number.", ! "$bLAST$b duration Client must have connected to IRC in the last $bduration$b (alias for LINKED <=duration)", ! "$bLINKED$b cmp Connected time constraint (<Nu, <=Nu, =Nu, >=Nu or >Nu)", "$bACCESS$b cmp Access constraints (<nnn, <=nnn, =nnn, >=nnn or >nnn)", "$bREASON$b reason Reason for kill or gline (must be listed last).", --- 76,80 ---- "$bNUMCHANNELS$b 5 Specifies a number of channels the client must be in.", "$bLIMIT$b 50 Limits the number of responses to a certain number.", ! "$bNICKAGE$b cmp Client has had nick this long (<Nu, <=Nu, =Nu, >=Nu or >Nu)", "$bACCESS$b cmp Access constraints (<nnn, <=nnn, =nnn, >=nnn or >nnn)", "$bREASON$b reason Reason for kill or gline (must be listed last).", |