Commit c65571b1 authored by Marian Durkovic's avatar Marian Durkovic

Compile fix

parent 566ba394
...@@ -217,7 +217,7 @@ static int OpenUDP( vlc_object_t * p_this ) ...@@ -217,7 +217,7 @@ static int OpenUDP( vlc_object_t * p_this )
/* Under Win32 and for multicasting, we bind to IN6ADDR_ANY */ /* Under Win32 and for multicasting, we bind to IN6ADDR_ANY */
if( IN6_IS_ADDR_MULTICAST(&loc.sin6_addr) ) if( IN6_IS_ADDR_MULTICAST(&loc.sin6_addr) )
{ {
struct sockaddr_in6 sockany = sock; struct sockaddr_in6 sockany = loc;
sockany.sin6_addr = in6addr_any; sockany.sin6_addr = in6addr_any;
sockany.sin6_scope_id = 0; sockany.sin6_scope_id = 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