Commit 2d9621ae authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

udp: missing break's

(cherry picked from commit 53893837073edd6e14c40c632e777b895d10b7c7)
parent df241141
...@@ -261,6 +261,7 @@ static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family, ...@@ -261,6 +261,7 @@ static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family,
if (setsockopt (fd, SOL_IPV6, IPV6_MULTICAST_IF, if (setsockopt (fd, SOL_IPV6, IPV6_MULTICAST_IF,
&scope, sizeof (scope)) == 0) &scope, sizeof (scope)) == 0)
return 0; return 0;
break;
#endif #endif
#ifdef __linux__ #ifdef __linux__
...@@ -270,6 +271,7 @@ static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family, ...@@ -270,6 +271,7 @@ static int net_SetMcastOut (vlc_object_t *p_this, int fd, int family,
if (setsockopt (fd, SOL_IP, IP_MULTICAST_IF, if (setsockopt (fd, SOL_IP, IP_MULTICAST_IF,
&req, sizeof (req)) == 0) &req, sizeof (req)) == 0)
return 0; return 0;
break;
} }
#endif #endif
default: default:
......
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