From 5d921984873b708c2f91bed01689f6351d95c233 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 31 Dec 2012 18:23:21 +0100 Subject: [PATCH] Get rid of Conn_ResetPenalty(), it is unused --- src/ngircd/conn-func.c | 18 ------------------ src/ngircd/conn-func.h | 1 - 2 files changed, 19 deletions(-) diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c index e81a79e9..96476744 100644 --- a/src/ngircd/conn-func.c +++ b/src/ngircd/conn-func.c @@ -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 ) { diff --git a/src/ngircd/conn-func.h b/src/ngircd/conn-func.h index 21bbcdb0..1d05acc8 100644 --- a/src/ngircd/conn-func.h +++ b/src/ngircd/conn-func.h @@ -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 )); -- 2.39.2