summaryrefslogtreecommitdiff
path: root/libsoup
diff options
context:
space:
mode:
authorIsaac Jurado <ijurado@amazon.com>2017-08-07 18:31:29 +0100
committerDavid Woodhouse <dwmw2@infradead.org>2017-08-07 18:32:38 +0100
commit3253fd38fdbe99ea9cc5b08255eb42b6f2012784 (patch)
tree7e25f1a2739e686d0b461fd84611d5b61a388ff2 /libsoup
parentf0c0f1a619b52ce7a5ca0430086e57133d969eb6 (diff)
downloadlibsoup-3253fd38fdbe99ea9cc5b08255eb42b6f2012784.tar.gz
Fix string typo
Found by lintian.
Diffstat (limited to 'libsoup')
-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) {