From: Sam Hocevar Date: Mon, 28 May 2001 02:44:39 +0000 (+0000) Subject: * Forgot a little #ifdef, sorry. X-Git-Tag: 0.2.81~103 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f9c0292d94ffc2d2ffa0a6cc3d9e87ef78f9c90f;p=vlc * Forgot a little #ifdef, sorry. --- diff --git a/src/misc/netutils.c b/src/misc/netutils.c index fdfb8934b5..dd3b27827c 100644 --- a/src/misc/netutils.c +++ b/src/misc/netutils.c @@ -2,7 +2,7 @@ * netutils.c: various network functions ***************************************************************************** * Copyright (C) 1999, 2000, 2001 VideoLAN - * $Id: netutils.c,v 1.31 2001/05/28 02:38:48 sam Exp $ + * $Id: netutils.c,v 1.32 2001/05/28 02:44:39 sam Exp $ * * Authors: Vincent Seguin * Benoit Steiner @@ -199,7 +199,7 @@ int network_ChannelCreate( void ) intf_ErrMsg( "error: channel changing is not yet supported under BeOS" ); return( 1 ); -#elif defined( SYS_LINUX ) +#elif defined( SYS_LINUX ) || defined( WIN32 ) /* FIXME : channels handling only work for linux */ /* Allocate structure */ p_main->p_channel = malloc( sizeof( input_channel_t ) ); @@ -241,7 +241,7 @@ int network_ChannelJoin( int i_channel ) intf_ErrMsg( "network error: channels are not yet supported under BeOS" ); return( -1 ); -#elif defined( WIN32 ) || defined( SYS_LINUX ) +#elif defined( SYS_LINUX ) || defined( WIN32 ) int i_socket; int i_fromlen; struct sockaddr_in sa_server;