From e9f7de8cbf850cdc786b8e1ea11792d9df449128 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 25 Jun 2021 12:51:52 -0400 Subject: [PATCH] TT#14008 update for older libwebsockets Change-Id: I447c5b0804fe199e39fc22a67195a1ca9dc5242c --- daemon/websocket.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/daemon/websocket.c b/daemon/websocket.c index 13258dde5..53711dd27 100644 --- a/daemon/websocket.c +++ b/daemon/websocket.c @@ -765,10 +765,9 @@ static int websocket_protocol(struct lws *wsi, enum lws_callback_reasons reason, ilogs(http, LOG_DEBUG, "Websocket protocol '%s' ready for cleanup", name); break; case LWS_CALLBACK_RECEIVE: - ilogs(http, LOG_DEBUG, "Websocket protocol '%s' data (first %i, final %i, remain %zu) " + ilogs(http, LOG_DEBUG, "Websocket protocol '%s' data (final %i, remain %zu) " "received for '%s': '%.*s'", name, - lws_is_first_fragment(wsi), lws_is_final_fragment(wsi), lws_remaining_packet_payload(wsi), wc->uri, (int) len, (const char *) in);