Commit a48ff746 authored by Gildas Bazin's avatar Gildas Bazin

* modules/misc/network/ipv4.c: WinCE fix.

parent 05778252
...@@ -601,7 +601,7 @@ static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket ) ...@@ -601,7 +601,7 @@ static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket )
goto error; goto error;
} }
#if !defined( SYS_BEOS ) #if !defined( SYS_BEOS ) && !defined( UNDER_CE )
if( getsockopt( i_handle, SOL_SOCKET, SO_ERROR, (void*)&i_opt, if( getsockopt( i_handle, SOL_SOCKET, SO_ERROR, (void*)&i_opt,
&i_opt_size ) == -1 || i_opt != 0 ) &i_opt_size ) == -1 || i_opt != 0 )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment