From 8988da494e74c5605850ec477cdadfc215d2c2de Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 13 Apr 2008 21:38:05 +0000 Subject: [PATCH] Make this compile also on non-IPv6 kernels. --- sys/net/radix_mpath.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/net/radix_mpath.c b/sys/net/radix_mpath.c index 240fb36a09b7..871d436cf750 100644 --- a/sys/net/radix_mpath.c +++ b/sys/net/radix_mpath.c @@ -318,6 +318,7 @@ rn4_mpath_inithead(void **head, int off) return 0; } +#ifdef INET6 int rn6_mpath_inithead(void **head, int off) { @@ -332,3 +333,4 @@ rn6_mpath_inithead(void **head, int off) return 0; } +#endif