Module: ngircd.git Branch: master Commit: a2e26aad1e106aac256991a3d0c43c6c3fda7d4b URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=a2e26...
Author: Alexander Barton alex@barton.de Date: Sat Mar 9 17:58:10 2013 +0100
Conn_Handler(): Don't test for penalty times
The Conn_Handler() main loop calls Handle_Buffer() which checks for the "penalty time" of each client itself, so don't do it twice.
---
src/ngircd/conn.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index eeedb44..087f5fc 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -853,8 +853,7 @@ Conn_Handler(void) /* Look for non-empty read buffers ... */ for (i = 0; i < Pool_Size; i++) { if ((My_Connections[i].sock > NONE) - && (array_bytes(&My_Connections[i].rbuf) > 0) - && (My_Connections[i].delaytime <= t)) { + && (array_bytes(&My_Connections[i].rbuf) > 0)) { /* ... and try to handle the received data */ bytes_processed = Handle_Buffer(i); /* if we processed data, and there might be