From: Arran Cudbard-Bell Date: Sun, 21 Mar 2021 20:36:32 +0000 (+0000) Subject: Don't force rcode to OK X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=866c88a17ca5cec15352291a1a79a4e9b3828217;p=thirdparty%2Ffreeradius-server.git Don't force rcode to OK --- diff --git a/src/lib/server/process.h b/src/lib/server/process.h index 027148c5968..2f9e5ac8701 100644 --- a/src/lib/server/process.h +++ b/src/lib/server/process.h @@ -254,11 +254,11 @@ RESUME(send_generic) * Check for "do not respond". */ if (request->reply->code == PROCESS_CODE_DO_NOT_RESPOND) { - RDEBUG("Not sending reply to client."); - RETURN_MODULE_OK; + RDEBUG("Not sending reply to client"); + return UNLANG_ACTION_CALCULATE_RESULT; } - RETURN_MODULE_OK; + return UNLANG_ACTION_CALCULATE_RESULT; } #endif /* PROCESS_CODE_MAX */