From: Alan T. DeKok Date: Fri, 31 Aug 2012 06:04:33 +0000 (+0200) Subject: Drop packets means drop packets X-Git-Tag: release_3_0_0_beta0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5cd8533d25268724c528e84fa6f55caabf273a2;p=thirdparty%2Ffreeradius-server.git Drop packets means drop packets --- diff --git a/src/main/process.c b/src/main/process.c index 31203100598..53237de978c 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -1173,7 +1173,7 @@ STATE_MACHINE_DECL(request_running) * up the post proxy fail * handler. */ - if (request_proxy(request, 0) < 0) goto done; + if (request_proxy(request, 0) < 0) goto finished; } else #endif { @@ -1190,9 +1190,10 @@ STATE_MACHINE_DECL(request_running) } #endif - done: + finished: request_finish(request, action); + done: #ifdef DEBUG_STATE_MACHINE if (debug_flag) printf("(%u) ********\tSTATE %s C%u -> C%u\t********\n", request->number, __FUNCTION__, request->child_state, REQUEST_DONE); #endif