Commit f19700ea authored by Florian Roeske's avatar Florian Roeske Committed by Jean-Baptiste Kempf

Fix ipv6 multicast socket option

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent df2ac736
......@@ -259,7 +259,7 @@ static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family,
#ifdef IPV6_MULTICAST_IF
case AF_INET6:
if (setsockopt (fd, SOL_IPV6, IPV6_MULTICAST_IF,
&scope, sizeof (scope) == 0))
&scope, sizeof (scope)) == 0)
return 0;
#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