[NeoStats-Devel] [Commits] r46 - trunk

[email protected] Sat, 20 Aug 2005 23:12:03 +1000
Newsgroups gmane.comp.neostats.devel
Message-ID <[email protected]>
Author: DNB
Date: Sat Aug 20 21:11:56 2005
New Revision: 46

Modified:
   trunk/floodserv.c
Log:
fix MaxCTC chanalert text

Modified: trunk/floodserv.c
==============================================================================
--- trunk/floodserv.c	(original)
+++ trunk/floodserv.c	Sat Aug 20 21:11:56 2005
@@ -381,10 +381,10 @@
 	/* just some record keeping */
 	if( ci->ctc > MaxCTC ) 
 	{
-		dlog( DEBUG1, "New CTC record on %s with %d Topics in %d seconds", cmdparams->channel->name, ci->ctc, (int)period );
+		dlog( DEBUG1, "New CTC record on %s with %d Topic Changes in %d seconds", cmdparams->channel->name, ci->ctc, (int)period );
 		if( fscfg.verbose ) 
 		{
-			irc_chanalert( fs_bot, "New CTC record on %s with %d joins in %d seconds", cmdparams->channel->name, ci->ctc, (int)period );
+			irc_chanalert( fs_bot, "New CTC record on %s with %d Topic Changes in %d seconds", cmdparams->channel->name, ci->ctc, (int)period );
 		}
 		MaxCTC = ci->ctc;
 		strlcpy( MaxCTCChan, cmdparams->channel->name, MAXCHANLEN );