repo: ngircd action: commit revision: path_from: revision_from: 17ffda1c8a06855adb7a411734b1f7f8cc28d497: path_to: revision_to:
commit 17ffda1c8a06855adb7a411734b1f7f8cc28d497 Author: Alexander BartonDate: Mon Mar 12 09:47:19 2012 +0100 Fix typo: recieved -> received Thanks to Christoph Biedl. diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
--- a/src/ngircd/conn.c
+++ b/src/ngircd/conn.c
@@ -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 );
}
-----END OF PAGE-----