diff options
| author | Alexander Barton <alex@barton.de> | 2012-03-12 09:47:19 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-03-12 09:47:19 +0100 |
| commit | 17ffda1c8a06855adb7a411734b1f7f8cc28d497 (patch) | |
| tree | 85d30645e8168f1a7825dfce5a265e4b2bb514e2 | |
| parent | 0de11ead3663a1248ae0f0f97a2896845774a7d4 (diff) | |
| download | ngircd-17ffda1c8a06855adb7a411734b1f7f8cc28d497.tar.gz ngircd-17ffda1c8a06855adb7a411734b1f7f8cc28d497.zip | |
Fix typo: recieved -> received
Thanks to Christoph Biedl.
| -rw-r--r-- | src/ngircd/conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 82dbb288..b6e62809 100644 --- 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 ); } |