Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d4a50a34
Commit
d4a50a34
authored
May 21, 2002
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/network/ipv6.c: fixed a stupid bug.
parent
f5f0a1cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plugins/network/ipv6.c
plugins/network/ipv6.c
+3
-3
No files found.
plugins/network/ipv6.c
View file @
d4a50a34
...
@@ -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:1
8 gbazin Exp $
* $Id: ipv6.c,v 1.
8 2002/05/21 06:55:4
8 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment