From: Alan T. DeKok Date: Thu, 3 May 2012 13:51:33 +0000 (+0200) Subject: Only manage connections on release X-Git-Tag: release_3_0_0_beta0~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e7aa24b9fe036dad82ba9711782110b701bca06;p=thirdparty%2Ffreeradius-server.git Only manage connections on release So there's less work to do --- diff --git a/src/main/connection.c b/src/main/connection.c index 3679711ec73..b3a8dfa2fcb 100644 --- a/src/main/connection.c +++ b/src/main/connection.c @@ -621,8 +621,6 @@ void *fr_connection_get(fr_connection_pool_t *fc) for (this = fc->head; this != NULL; this = next) { next = this->next; - if (!fr_connection_manage(fc, this, now)) continue; - if (!this->used) goto do_return; }