From 8312f8334ca6a0b29eab44ffcda8320cbd64b424 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 27 Mar 2021 08:34:18 +0100 Subject: [PATCH] can_filter_request_body(): Fix a log message that contained a spurious u --- jcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 2beca7b6..5ed93b35 100644 --- a/jcc.c +++ b/jcc.c @@ -2159,7 +2159,7 @@ static int can_filter_request_body(const struct client_state *csp) { log_error(LOG_LEVEL_INFO, "Not filtering request body from %s: buffer limit %lu will be exceeded " - "(content length %lluu)", csp->ip_addr_str, csp->config->buffer_limit, + "(content length %llu)", csp->ip_addr_str, csp->config->buffer_limit, csp->expected_client_content_length); return FALSE; } -- 2.39.2