summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libsoup/soup-websocket-connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsoup/soup-websocket-connection.c b/libsoup/soup-websocket-connection.c
index 3d01e905..e9260b6a 100644
--- a/libsoup/soup-websocket-connection.c
+++ b/libsoup/soup-websocket-connection.c
@@ -698,11 +698,11 @@ process_contents (SoupWebsocketConnection *self,
if (!fin && opcode) {
/* Initial fragment of a message */
if (pv->message_data) {
- g_debug ("received out of order inital message fragment");
+ g_debug ("received out of order initial message fragment");
protocol_error_and_close (self);
return;
}
- g_debug ("received inital fragment frame %d with %d payload", (int)opcode, (int)payload_len);
+ g_debug ("received initial fragment frame %d with %d payload", (int)opcode, (int)payload_len);
} else if (!fin && !opcode) {
/* Middle fragment of a message */
if (!pv->message_data) {