aboutsummaryrefslogtreecommitdiff
path: root/networking/ping6.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/ping6.c')
-rw-r--r--networking/ping6.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/networking/ping6.c b/networking/ping6.c
index 72d1d667a..47ab7c154 100644
--- a/networking/ping6.c
+++ b/networking/ping6.c
@@ -236,6 +236,16 @@ static void sendping(int junk)
}
}
+/* libc defines have changed around on us, whee ! */
+#ifndef ICMP6_MEMBERSHIP_QUERY
+# define ICMP6_MEMBERSHIP_QUERY MLD_LISTENER_QUERY
+#endif
+#ifndef ICMP6_MEMBERSHIP_REPORT
+# define ICMP6_MEMBERSHIP_REPORT MLD_LISTENER_REPORT
+#endif
+#ifndef ICMP6_MEMBERSHIP_REDUCTION
+# define ICMP6_MEMBERSHIP_REDUCTION MLD_LISTENER_REDUCTION
+#endif
static char *icmp6_type_name (int id)
{
switch (id) {