2011-10-30 01:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/hbdyn.c
* added dummy assignment to pacify warning
* harbour/src/rtl/hbsocket.c
* added workaround for EREFUSED == ECONNREFUSED.
It has to be tested with different OS-es
This commit is contained in:
@@ -16,6 +16,14 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-10-30 01:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/src/rtl/hbdyn.c
|
||||
* added dummy assignment to pacify warning
|
||||
|
||||
* harbour/src/rtl/hbsocket.c
|
||||
* added workaround for EREFUSED == ECONNREFUSED.
|
||||
It has to be tested with different OS-es
|
||||
|
||||
2011-10-29 01:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbziparc/ziparc.prg
|
||||
% minor optimization to last change. checkme.
|
||||
|
||||
@@ -476,6 +476,7 @@ typedef struct
|
||||
static void hb_u32par( PHB_ITEM pParam, PHB_DYNARG pArg, HB_U32 * r1, HB_U32 * r2, HB_BOOL * b64 )
|
||||
{
|
||||
*b64 = HB_FALSE;
|
||||
*r2 = 0;
|
||||
|
||||
switch( pArg->iType )
|
||||
{
|
||||
|
||||
@@ -1289,9 +1289,11 @@ static void hb_socketSetOsError( int err )
|
||||
break;
|
||||
#endif
|
||||
#if defined( EREFUSED )
|
||||
# if EREFUSED != ECONNREFUSED
|
||||
case EREFUSED:
|
||||
uiErr = HB_SOCKET_ERR_REFUSED;
|
||||
break;
|
||||
# endif
|
||||
#endif
|
||||
/*
|
||||
#if defined( TRY_AGAIN )
|
||||
|
||||
Reference in New Issue
Block a user