From: Nick Porter Date: Wed, 29 Oct 2025 11:44:19 +0000 (+0000) Subject: Report correct config option name. Fixes #5669 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e9c274ff3f39dcbb3f84ac319bd73252e6cd3fe;p=thirdparty%2Ffreeradius-server.git Report correct config option name. Fixes #5669 --- diff --git a/src/modules/rlm_ftp/rlm_ftp.c b/src/modules/rlm_ftp/rlm_ftp.c index ace436c0ad0..308cc650bf2 100644 --- a/src/modules/rlm_ftp/rlm_ftp.c +++ b/src/modules/rlm_ftp/rlm_ftp.c @@ -215,7 +215,7 @@ static size_t ftp_response_body(void *in, size_t size, size_t nmemb, void *userd if (start == end) return 0; /* Nothing to process */ if ((ctx->instance->max_resp_size > 0) && ((ctx->used + (end - p)) > ctx->instance->max_resp_size)) { - REDEBUG("Incoming data (%zu bytes) exceeds max_body_in (%zu bytes). " + REDEBUG("Incoming data (%zu bytes) exceeds max_resp_size (%zu bytes). " "Forcing body to type 'invalid'", ctx->used + (end - p), ctx->instance->max_resp_size); ctx->state = WRITE_STATE_DISCARD; TALLOC_FREE(ctx->buffer);