[srvx-commits] CVS: services/src mod-snoop.c,1.8,1.9
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-03 23:57:34
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv19072/src
Modified Files:
mod-snoop.c
Log Message:
update to new AddChannel() calling convention
Index: mod-snoop.c
===================================================================
RCS file: /cvsroot/srvx/services/src/mod-snoop.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** mod-snoop.c 14 Nov 2002 00:49:47 -0000 1.8
--- mod-snoop.c 3 Jan 2003 23:57:31 -0000 1.9
***************
*** 1,4 ****
/* mod-snoop.c - User surveillance module (per pomac's spec)
! * Copyright 2002 srvx Development Team
*
* This program is free software; you can redistribute it and/or modify
--- 1,4 ----
/* mod-snoop.c - User surveillance module (per pomac's spec)
! * Copyright 2002-2003 srvx Development Team
*
* This program is free software; you can redistribute it and/or modify
***************
*** 131,135 ****
str = database_get_data(node, "channel", RECDB_QSTRING);
if (!str) return;
! snoop_cfg.channel = AddChannel(str, now, "+sntim", NULL, 0, NULL);
if (!snoop_cfg.channel) return;
AddChannelUser(snoop_cfg.bot, snoop_cfg.channel);
--- 131,135 ----
str = database_get_data(node, "channel", RECDB_QSTRING);
if (!str) return;
! snoop_cfg.channel = AddChannel(str, now, "+sntim", NULL);
if (!snoop_cfg.channel) return;
AddChannelUser(snoop_cfg.bot, snoop_cfg.channel);
|