diff --git a/ChangeLog.txt b/ChangeLog.txt index 8f1919c1b4..ea81f47c9b 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,10 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2018-02-12 10:00 UTC+0100 Aleksander Czajczynski (hb fki.pl) + * contrib/hbnetio/netiocli.c + ! fix indentation + 2018-02-11 23:40 UTC+0100 Aleksander Czajczynski (hb fki.pl) * include/hbapi.h * src/common/hbver.c diff --git a/contrib/hbnetio/netiocli.c b/contrib/hbnetio/netiocli.c index 8b0fdb554c..8b2db706e2 100644 --- a/contrib/hbnetio/netiocli.c +++ b/contrib/hbnetio/netiocli.c @@ -195,12 +195,11 @@ static long s_fileRecvAll( PHB_CONCLI conn, void * buffer, long len ) l = hb_sockexRead( conn->sock, ptr + lRead, len - lRead, 1000 ); if( l > 0 ) lRead += l; - else if( l == 0 || hb_socketGetError() != HB_SOCKET_ERR_TIMEOUT || ( timeout = hb_timerTest( timeout, &timer ) ) == 0 || hb_vmRequestQuery() != 0 ) - break; + break; } return lRead; }