Commit d4a50a34 authored by Gildas Bazin's avatar Gildas Bazin

* ./plugins/network/ipv6.c: fixed a stupid bug.
parent f5f0a1cd
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ipv6.c: IPv6 network abstraction layer * ipv6.c: IPv6 network abstraction layer
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: ipv6.c,v 1.7 2002/05/20 19:49:18 gbazin Exp $ * $Id: ipv6.c,v 1.8 2002/05/21 06:55:48 gbazin Exp $
* *
* Authors: Alexis Guillard <alexis.guillard@bt.com> * Authors: Alexis Guillard <alexis.guillard@bt.com>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
...@@ -120,14 +120,14 @@ static int BuildAddr( struct sockaddr_in6 * p_socket, ...@@ -120,14 +120,14 @@ static int BuildAddr( struct sockaddr_in6 * p_socket,
if( wship6_dll ) if( wship6_dll )
{ {
_getaddrinfo = (GETADDRINFO) GetProcAddress( wship6_dll, _getaddrinfo = (GETADDRINFO) GetProcAddress( wship6_dll,
"getaddrinfo" ); "getaddrinfo" );
_freeaddrinfo = (FREEADDRINFO) GetProcAddress( wship6_dll, _freeaddrinfo = (FREEADDRINFO) GetProcAddress( wship6_dll,
"freeaddrinfo" ); "freeaddrinfo" );
} }
if( !_getaddrinfo || !_freeaddrinfo ) if( !_getaddrinfo || !_freeaddrinfo )
{ {
intf_ErrMsg( "ipv6 error: no IPv6 stack installed" ); intf_ErrMsg( "ipv6 error: no IPv6 stack installed" );
FreeLibrary( wship6_dll ); if( wship6_dll ) FreeLibrary( wship6_dll );
return( -1 ); return( -1 );
} }
#endif #endif
......
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