From: Michael R Sweet Date: Wed, 27 Mar 2024 18:38:28 +0000 (-0400) Subject: Fix client logging of requests. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68a55e3d24fe77c0ae6c0a80146897da79366afa;p=thirdparty%2Fcups.git Fix client logging of requests. --- 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);