diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8ef8e2cf7e..39e07b4259 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-12-04 12:53 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * src/rtl/hbsocket.c + ! Fixed typo breaking MS-DOS builds. + 2010-12-02 21:42 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/rtl/hbinet.c * Do not set SO_EXCLUSIVEADDRUSE on Windows in diff --git a/harbour/src/rtl/hbsocket.c b/harbour/src/rtl/hbsocket.c index 48c8d87882..fe2458f392 100644 --- a/harbour/src/rtl/hbsocket.c +++ b/harbour/src/rtl/hbsocket.c @@ -603,7 +603,7 @@ int hb_socketSetNoDelay( HB_SOCKET sd, HB_BOOL fNoDelay ) int hb_socketSetExclusiveAddr( HB_SOCKET sd, HB_BOOL fExclusive ) { HB_SYMBOL_UNUSED( sd ); - HB_SYMBOL_UNUSED( fReuse ); + HB_SYMBOL_UNUSED( fExclusive ); hb_socketSetRawError( HB_SOCKET_ERR_INVALIDHANDLE ); return -1; }