From: Alan T. DeKok Date: Sun, 6 Nov 2011 09:55:54 +0000 (+0100) Subject: Removed unused variable X-Git-Tag: release_3_0_0_beta0~524 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79a4b3048a49a038e9a3e13f1e44fbf0961ad2dd;p=thirdparty%2Ffreeradius-server.git Removed unused variable --- diff --git a/src/main/connection.c b/src/main/connection.c index 2438d32eab9..458bb34d819 100644 --- a/src/main/connection.c +++ b/src/main/connection.c @@ -453,7 +453,6 @@ static int fr_connection_pool_check(fr_connection_pool_t *fc) int fr_connection_check(fr_connection_pool_t *fc, void *conn) { - int rcode = 1; fr_connection_t *this; time_t now; @@ -466,7 +465,7 @@ int fr_connection_check(fr_connection_pool_t *fc, void *conn) for (this = fc->head; this != NULL; this = this->next) { if (this->connection == conn) { - rcode = fr_connection_manage(fc, conn, now); + fr_connection_manage(fc, conn, now); break; } }