[srvx-commits] CVS: services/src proto-p10.c,1.62,1.63
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-06-02 03:23:37
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv5049/src
Modified Files:
proto-p10.c
Log Message:
ignore SETTIME from other servers, so it doesn't spam main.log with parse errors
Index: proto-p10.c
===================================================================
RCS file: /cvsroot/srvx/services/src/proto-p10.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -r1.62 -r1.63
*** proto-p10.c 28 Feb 2003 17:17:56 -0000 1.62
--- proto-p10.c 2 Jun 2003 03:23:33 -0000 1.63
***************
*** 1464,1467 ****
--- 1464,1470 ----
dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
+ /* We have reliable clock! Always! Wraaa! */
+ dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
+ dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
/* handle topics */
dict_insert(irc_func_dict, "331", cmd_num_topic);
|