diff options
| author | Alexander Barton <alex@barton.de> | 2011-12-30 00:32:11 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2011-12-30 00:32:11 +0100 |
| commit | 765c2f26ea29d5930d19dab5307c302e473e1120 (patch) | |
| tree | 986204e51095f77823012c48f0a4b9dbc56997fd /src | |
| parent | 69fa6f268af88128248523b33b85aa1ab2759a82 (diff) | |
| download | ngircd-765c2f26ea29d5930d19dab5307c302e473e1120.tar.gz ngircd-765c2f26ea29d5930d19dab5307c302e473e1120.zip | |
Fixed typo in two error messages
Thanks to Christoph Biedl!
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conn.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 4d5c223c..4a2f49c1 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -1572,7 +1572,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 (connn %d): %d bytes!", + "Could not append recieved data to zip input buffer (connection %d): %d bytes!", Idx, len); Conn_Close(Idx, "Receive buffer space exhausted", NULL, false); @@ -1582,7 +1582,9 @@ Read_Request( CONN_ID Idx ) #endif { if (!array_catb( &My_Connections[Idx].rbuf, readbuf, len)) { - Log( LOG_ERR, "Could not append recieved data to input buffer (connn %d): %d bytes!", Idx, len ); + Log(LOG_ERR, + "Could not append recieved data to input buffer (connection %d): %d bytes!", + Idx, len); Conn_Close(Idx, "Receive buffer space exhausted", NULL, false ); } } |