From: Alan T. DeKok Date: Sun, 6 May 2012 09:13:39 +0000 (+0200) Subject: Correct calculation of currently outstanding X-Git-Tag: release_3_0_0_beta0~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b42c8e1651ddded340ec6bd3a70dbecf26285f0;p=thirdparty%2Ffreeradius-server.git Correct calculation of currently outstanding --- diff --git a/src/main/process.c b/src/main/process.c index dfe930dd6fb..bc1b35e98db 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -1591,8 +1591,7 @@ static void remove_from_proxy_hash_nl(REQUEST *request) * packets, but whether or not the home server has * responded at all. */ - if (!request->proxy_reply && - request->home_server && + if (request->home_server && request->home_server->currently_outstanding) { request->home_server->currently_outstanding--; }