]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Only manage connections on release
authorAlan T. DeKok <aland@freeradius.org>
Thu, 3 May 2012 13:51:33 +0000 (15:51 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 4 May 2012 15:33:00 +0000 (17:33 +0200)
So there's less work to do

src/main/connection.c

index 3679711ec73e1171cec8753c4360d8fb52fd6ac5..b3a8dfa2fcb8aca33ebb8260f36e648452d02272 100644 (file)
@@ -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;
        }