diff options
| author | Alexander Barton <alex@barton.de> | 2004-10-04 23:23:41 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2004-10-04 23:23:41 +0000 |
| commit | eee276285270c8a4229e710e076371c8014c7691 (patch) | |
| tree | 53055d94195f3cb7b6b9b6a491f3fa38af3c24c5 | |
| parent | c79fa28a66110b5a5f938b283c7608e749473efc (diff) | |
| download | ngircd-eee276285270c8a4229e710e076371c8014c7691.tar.gz ngircd-eee276285270c8a4229e710e076371c8014c7691.zip | |
Changed "read buffer" to "receive buffer" as suggested by Goetz.
| -rw-r--r-- | src/ngircd/conn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 7aa29537..31f2c1d2 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -16,7 +16,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn.c,v 1.138 2004/10/04 23:09:04 alex Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.139 2004/10/04 23:23:41 alex Exp $"; #include "imp.h" #include <assert.h> @@ -1133,8 +1133,8 @@ Read_Request( CONN_ID Idx ) #endif { /* Der Lesepuffer ist voll */ - Log( LOG_ERR, "Read buffer overflow (connection %d): %d bytes!", Idx, My_Connections[Idx].rdatalen ); - Conn_Close( Idx, "Read buffer overflow!", NULL, FALSE ); + Log( LOG_ERR, "Receive buffer overflow (connection %d): %d bytes!", Idx, My_Connections[Idx].rdatalen ); + Conn_Close( Idx, "Receive buffer overflow!", NULL, FALSE ); return; } @@ -1276,7 +1276,7 @@ Handle_Buffer( CONN_ID Idx ) if( My_Connections[Idx].rdatalen > ZREADBUFFER_LEN ) { /* Hupsa! Soviel Platz haben wir aber gar nicht! */ - Log( LOG_ALERT, "Can't move read buffer: No space left in unzip buffer (need %d bytes)!", My_Connections[Idx].rdatalen ); + Log( LOG_ALERT, "Can't move receive buffer: No space left in unzip buffer (need %d bytes)!", My_Connections[Idx].rdatalen ); return FALSE; } memcpy( My_Connections[Idx].zip.rbuf, My_Connections[Idx].rbuf, My_Connections[Idx].rdatalen ); |