On Tue, 16 Jan 2001, Christophe Thibault wrote:

> Actually, it's not that dangerous as the redefinition of errno only occurs
> in fsock.c and errno is only used in fsock.c for retrieving socket errors...

    Something like this is more safer:

    #ifdef PHP_WIN32
    #define php_sock_errno() WSAGetLastError()
    #else
    #define php_sock_errno() errno
    #endif

    - Sascha


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to