From 68a55e3d24fe77c0ae6c0a80146897da79366afa Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 27 Mar 2024 14:38:28 -0400 Subject: [PATCH] Fix client logging of requests. --- scheduler/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler/client.c b/scheduler/client.c index 7d44744d72..1173d2bb4c 100644 --- a/scheduler/client.c +++ b/scheduler/client.c @@ -742,7 +742,7 @@ cupsdReadClient(cupsd_client_t *con) /* I - Client to read from */ gettimeofday(&(con->start), NULL); cupsdLogClient(con, CUPSD_LOG_DEBUG, "%s %s HTTP/%d.%d", - httpStateString(con->operation) + 11, con->uri, + httpStateString(con->operation), con->uri, httpGetVersion(con->http) / 100, httpGetVersion(con->http) % 100); -- 2.47.2