about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2005-09-04 23:38:32 +0000
committerAlexander Barton <alex@barton.de>2005-09-04 23:38:32 +0000
commit660b529c104dd85f01bd6b5fe2e30c9a9904b058 (patch)
tree2ed09f85e29a1eb7fa5afbae262049d1b0725afe /src
parent565129f99290006eae51aec18a993bdf0077a7e0 (diff)
downloadngircd-660b529c104dd85f01bd6b5fe2e30c9a9904b058.tar.gz
ngircd-660b529c104dd85f01bd6b5fe2e30c9a9904b058.zip
Add debug code to Conn_SetPenalty().
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conn-func.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c
index 5f998985..eb359b27 100644
--- a/src/ngircd/conn-func.c
+++ b/src/ngircd/conn-func.c
@@ -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 */