]> arthur.barton.de Git - ngircd.git/commitdiff
Get rid of Conn_ResetPenalty(), it is unused
authorAlexander Barton <alex@barton.de>
Mon, 31 Dec 2012 17:23:21 +0000 (18:23 +0100)
committerAlexander Barton <alex@barton.de>
Mon, 31 Dec 2012 17:23:21 +0000 (18:23 +0100)
src/ngircd/conn-func.c
src/ngircd/conn-func.h

index e81a79e961a1c165b4bf4851a8f594f6d4af74ee..964767442ce8dfb1b3bc70ee443a4ceec8b6579c 100644 (file)
@@ -117,24 +117,6 @@ Conn_SetPenalty(CONN_ID Idx, time_t Seconds)
 } /* Conn_SetPenalty */
 
 
-/**
- * Reset the "penalty time" for one connection.
- *
- * @param Idx Connection index.
- * @see Conn_SetPenalty
- */
-GLOBAL void
-Conn_ResetPenalty(CONN_ID Idx)
-{
-       assert(Idx > NONE);
-
-       My_Connections[Idx].delaytime = 0;
-#ifdef DEBUG
-       Log(LOG_DEBUG, "Penalty time on connection %d has been reset.");
-#endif
-} /* Conn_ResetPenalty */
-
-
 GLOBAL void
 Conn_ClearFlags( void )
 {
index 21bbcdb0c9e2de517dc3b30f5dceb12152d0a494..1d05acc88d5623979a371e80aedc3f4a61e480c8 100644 (file)
@@ -45,7 +45,6 @@ GLOBAL long Conn_RecvBytes PARAMS(( CONN_ID Idx ));
 GLOBAL const char *Conn_IPA PARAMS(( CONN_ID Idx ));
 
 GLOBAL void Conn_SetPenalty PARAMS(( CONN_ID Idx, time_t Seconds ));
-GLOBAL void Conn_ResetPenalty PARAMS(( CONN_ID Idx ));
 
 GLOBAL void Conn_ClearFlags PARAMS(( void ));
 GLOBAL int Conn_Flag PARAMS(( CONN_ID Idx ));