From: Arran Cudbard-Bell Date: Mon, 5 Apr 2021 23:07:31 +0000 (+0100) Subject: Use the correct return code X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b418b9345bf2d59aad3da8709cf48cb041388cd5;p=thirdparty%2Ffreeradius-server.git Use the correct return code --- diff --git a/src/modules/rlm_client/rlm_client.c b/src/modules/rlm_client/rlm_client.c index df48833eb7..3c76942bd7 100644 --- a/src/modules/rlm_client/rlm_client.c +++ b/src/modules/rlm_client/rlm_client.c @@ -253,7 +253,7 @@ static xlat_action_t xlat_client(TALLOC_CTX *ctx, fr_dcursor_t *out, request_t * client = client_from_request(request); if (!client) { REDEBUG("No client associated with this request"); - return RLM_MODULE_FAIL; + return XLAT_ACTION_FAIL; } }