]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Fix typo: recieved -> received
authorAlexander Barton <alex@barton.de>
Mon, 12 Mar 2012 08:47:19 +0000 (09:47 +0100)
committerAlexander Barton <alex@barton.de>
Mon, 12 Mar 2012 08:47:19 +0000 (09:47 +0100)
Thanks to Christoph Biedl.

src/ngircd/conn.c

index 82dbb288d9e281e0a4c72ec4ff9f3bfce1e218b1..b6e628092633fb68a34b8175e383b195033d9b0f 100644 (file)
@@ -1589,7 +1589,7 @@ Read_Request( CONN_ID Idx )
                if (!array_catb(&My_Connections[Idx].zip.rbuf, readbuf,
                                (size_t) len)) {
                        Log(LOG_ERR,
-                           "Could not append recieved data to zip input buffer (connection %d): %d bytes!",
+                           "Could not append received data to zip input buffer (connection %d): %d bytes!",
                            Idx, len);
                        Conn_Close(Idx, "Receive buffer space exhausted", NULL,
                                   false);
@@ -1600,7 +1600,7 @@ Read_Request( CONN_ID Idx )
        {
                if (!array_catb( &My_Connections[Idx].rbuf, readbuf, len)) {
                        Log(LOG_ERR,
-                           "Could not append recieved data to input buffer (connection %d): %d bytes!",
+                           "Could not append received data to input buffer (connection %d): %d bytes!",
                            Idx, len);
                        Conn_Close(Idx, "Receive buffer space exhausted", NULL, false );
                }