2015-10-08 14:26 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/hbzsock.c
! fixed two typos
This commit is contained in:
@@ -10,6 +10,10 @@
|
||||
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
|
||||
*/
|
||||
|
||||
2015-10-08 14:26 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* src/rtl/hbzsock.c
|
||||
! fixed two typos
|
||||
|
||||
2015-10-06 13:07 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* src/compiler/compi18n.c
|
||||
* reduced variable scope
|
||||
|
||||
@@ -254,7 +254,7 @@ static long s_sockexWrite( PHB_SOCKEX pSock, const void * data, long len, HB_MAX
|
||||
return lWritten >= 0 ? ( long ) ( len - pZ->z_write.avail_in ) : lWritten;
|
||||
}
|
||||
else
|
||||
return hb_sockexWrite( pSock, data, len, timeout );
|
||||
return hb_sockexWrite( pZ->sock, data, len, timeout );
|
||||
}
|
||||
|
||||
static long s_sockexFlush( PHB_SOCKEX pSock, HB_MAXINT timeout, HB_BOOL fSync )
|
||||
@@ -284,7 +284,7 @@ static long s_sockexFlush( PHB_SOCKEX pSock, HB_MAXINT timeout, HB_BOOL fSync )
|
||||
hb_socketSetError( HB_ZSOCK_ERROR_BASE - err );
|
||||
lResult = HB_ZSOCK_WRBUFSIZE - pZ->z_write.avail_out;
|
||||
}
|
||||
return lResult + hb_sockexFlush( HB_ZSOCK_GET( pSock )->sock, timeout, fSync );
|
||||
return lResult + hb_sockexFlush( pZ->sock, timeout, fSync );
|
||||
}
|
||||
|
||||
static int s_sockexCanRead( PHB_SOCKEX pSock, HB_BOOL fBuffer, HB_MAXINT timeout )
|
||||
|
||||
Reference in New Issue
Block a user