[srvx-commits] CVS: services/src mod-snoop.c,1.5,1.6
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-11-07 01:41:21
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv3183/src
Modified Files:
mod-snoop.c
Log Message:
fix compile error
Index: mod-snoop.c
===================================================================
RCS file: /cvsroot/srvx/services/src/mod-snoop.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** mod-snoop.c 23 Oct 2002 12:37:54 -0000 1.5
--- mod-snoop.c 7 Nov 2002 01:41:17 -0000 1.6
***************
*** 51,56 ****
}
! static void
! snoop_join(struct userNode *user, struct chanNode *chan) {
if (!snoop_cfg.enabled) return 0;
if (user->uplink->burst && !snoop_cfg.show_bursts) return 0;
--- 51,58 ----
}
! static int
! snoop_join(struct modeNode *mNode) {
! struct userNode *user = mNode->user;
! struct chanNode *chan = mNode->channel;
if (!snoop_cfg.enabled) return 0;
if (user->uplink->burst && !snoop_cfg.show_bursts) return 0;
|