2018-02-12 10:00 UTC+0100 Aleksander Czajczynski (hb fki.pl)

* contrib/hbnetio/netiocli.c
    ! fix indentation
This commit is contained in:
Aleksander Czajczynski
2018-02-12 10:00:00 +01:00
parent 8545d4b8b6
commit 4047c53980
2 changed files with 5 additions and 2 deletions

View File

@@ -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

View File

@@ -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;
}