]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Correct calculation of currently outstanding
authorAlan T. DeKok <aland@freeradius.org>
Sun, 6 May 2012 09:13:39 +0000 (11:13 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Sun, 6 May 2012 13:37:35 +0000 (15:37 +0200)
src/main/process.c

index dfe930dd6fb7d2ad8d1524f4d605cfa695994441..bc1b35e98dbe0a9b4e3ae672bed063eda233a484 100644 (file)
@@ -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--;
        }