diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 08b53a88a9..2e79999162 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-11-01 19:01 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * src/rtl/hbsocket.c + ! hb -> HB_. + 2009-11-01 17:08 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * include/hbdefs.h + Added HB_BYTE as synonym to BYTE. diff --git a/harbour/src/rtl/hbsocket.c b/harbour/src/rtl/hbsocket.c index 49947b27aa..7031983dba 100644 --- a/harbour/src/rtl/hbsocket.c +++ b/harbour/src/rtl/hbsocket.c @@ -1574,7 +1574,7 @@ BOOL hb_socketInetAddr( void ** pSockAddr, unsigned * puiLen, memset( &sa, 0, sizeof( sa ) ); sa.sin_family = AF_INET; - sa.sin_port = htons( ( hbU16 ) iPort ); + sa.sin_port = htons( ( HB_U16 ) iPort ); if( !szAddr || !*szAddr ) { sa.sin_addr.s_addr = htonl( INADDR_ANY ); @@ -1619,7 +1619,7 @@ BOOL hb_socketInet6Addr( void ** pSockAddr, unsigned * puiLen, memset( &sa, 0, sizeof( sa ) ); sa.sin6_family = AF_INET6; - sa.sin6_port = htons( ( hbU16 ) iPort ); + sa.sin6_port = htons( ( HB_U16 ) iPort ); if( !szAddr || !*szAddr ) { #if defined( HB_HAS_INET6_ADDR_CONST ) @@ -2649,7 +2649,7 @@ BOOL hb_socketResolveInetAddr( void ** pSockAddr, unsigned * puiLen, const char memset( &sa, 0, sizeof( sa ) ); sa.sin_family = AF_INET; - sa.sin_port = htons( ( hbU16 ) iPort ); + sa.sin_port = htons( ( HB_U16 ) iPort ); if( !szAddr || !*szAddr ) { sa.sin_addr.s_addr = htonl( INADDR_ANY );