]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Report correct config option name. Fixes #5669
authorNick Porter <nick@portercomputing.co.uk>
Wed, 29 Oct 2025 11:44:19 +0000 (11:44 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Wed, 29 Oct 2025 11:44:19 +0000 (11:44 +0000)
src/modules/rlm_ftp/rlm_ftp.c

index ace436c0ad039fb4792faccaec539b2af91b8fd2..308cc650bf2356e18f043af69f9b96e8e05dbb04 100644 (file)
@@ -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);