diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 20dded651d..9506a66b0d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-17 13:17 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/hbinet.c + ! fixed bad typo introduced in last days probably during some code + formatting which broke HB_INETRECVLINE() and some other functions + 2009-06-17 13:07 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbapierr.h * added HB_EXPORT attribute to hb_err*() public functions diff --git a/harbour/source/rtl/hbinet.c b/harbour/source/rtl/hbinet.c index bb814233c0..75b34f5d00 100644 --- a/harbour/source/rtl/hbinet.c +++ b/harbour/source/rtl/hbinet.c @@ -1081,7 +1081,7 @@ static void s_inetRecvPattern( const char * szPattern ) return; } - iBufferSize = pBufferSize ? hb_itemGetNI( pBufferSize ) : 0; + iBufferSize = pBufferSize ? hb_itemGetNI( pBufferSize ) : 80; iMax = pMaxSize ? hb_itemGetNI( pMaxSize ) : 0; hb_vmUnlock();