]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix client logging of requests.
authorMichael R Sweet <msweet@msweet.org>
Wed, 27 Mar 2024 18:38:28 +0000 (14:38 -0400)
committerMichael R Sweet <msweet@msweet.org>
Wed, 27 Mar 2024 18:38:28 +0000 (14:38 -0400)
scheduler/client.c

index 7d44744d72d9b8f1b8a1f051ad0c9e4a15bdd179..1173d2bb4c7f1df93c588fdcfabd4e1f401ee8d9 100644 (file)
@@ -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);