From 7a9e7c502e49dae49ee4b951064a7adc9ee5d569 Mon Sep 17 00:00:00 2001 From: david Date: Sun, 26 Aug 2012 20:44:32 +0000 Subject: [PATCH] Add a missing IFF_IPMP #ifdef guard. --- libdnet-stripped/src/intf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libdnet-stripped/src/intf.c b/libdnet-stripped/src/intf.c index 25ae9996d..865e50080 100644 --- a/libdnet-stripped/src/intf.c +++ b/libdnet-stripped/src/intf.c @@ -954,9 +954,11 @@ intf_loop(intf_t *intf, intf_handler callback, void *arg) ; else return (-1); +#ifdef IFF_IPMP if (lifr->lifr_flags & IFF_IPMP) { continue; } +#endif if (_intf_get_noalias(intf, entry) < 0) return (-1);