Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
test: fix udp_multicast_interface6 on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Aug 10, 2014
1 parent ac879ed commit 94c7a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-udp-multicast-interface6.c
Expand Up @@ -69,7 +69,7 @@ TEST_IMPL(udp_multicast_interface6) {
r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0);
ASSERT(r == 0);

#if defined(__APPLE__)
#if defined(__APPLE__) || defined(__FreeBSD__)
r = uv_udp_set_multicast_interface(&server, "::1%lo0");
#else
r = uv_udp_set_multicast_interface(&server, NULL);
Expand Down

0 comments on commit 94c7a13

Please sign in to comment.