]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Add debug code to Conn_SetPenalty().
authorAlexander Barton <alex@barton.de>
Sun, 4 Sep 2005 23:38:32 +0000 (23:38 +0000)
committerAlexander Barton <alex@barton.de>
Sun, 4 Sep 2005 23:38:32 +0000 (23:38 +0000)
src/ngircd/conn-func.c

index 5f998985f6befe5dc83ae3eed95b3f3b7da4126d..eb359b27068ab4b6374c54673766dc04ab986c48 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conn-func.c,v 1.7 2005/07/07 18:39:45 fw Exp $";
+static char UNUSED id[] = "$Id: conn-func.c,v 1.8 2005/09/04 23:38:32 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -73,7 +73,13 @@ Conn_SetPenalty( CONN_ID Idx, time_t Seconds )
        assert( Seconds >= 0 );
 
        t = time( NULL ) + Seconds;
-       if( t > My_Connections[Idx].delaytime ) My_Connections[Idx].delaytime = t;
+       if (t > My_Connections[Idx].delaytime)
+               My_Connections[Idx].delaytime = t;
+
+#ifdef DEBUG
+       Log(LOG_DEBUG, "Add penalty time on connection %d: %ld second(s).",
+                       Idx, (long)Seconds);
+#endif
 } /* Conn_SetPenalty */