[libsoup] Fix string typo



commit 3253fd38fdbe99ea9cc5b08255eb42b6f2012784
Author: Isaac Jurado <ijurado amazon com>
Date:   Mon Aug 7 18:31:29 2017 +0100

    Fix string typo
    
    Found by lintian.

 libsoup/soup-websocket-connection.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libsoup/soup-websocket-connection.c b/libsoup/soup-websocket-connection.c
index 3d01e90..e9260b6 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) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]