From: hasso Date: Mon, 26 May 2003 14:35:50 +0000 (+0000) Subject: *BSD compile fix from Rivo Nurges. X-Git-Tag: frr-2.0-rc1~4020 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e3289be24694a018b2d6ba9ac99ebc0fc86ffccc;p=matthieu%2Ffrr.git *BSD compile fix from Rivo Nurges. --- diff --git a/ripngd/ripng_nexthop.h b/ripngd/ripng_nexthop.h index 5c778f5e2f..2213fc2aeb 100644 --- a/ripngd/ripng_nexthop.h +++ b/ripngd/ripng_nexthop.h @@ -41,6 +41,11 @@ void ripng_rte_send(struct list *ripng_rte_list, struct interface *ifp, **/ static inline int addr6_cmp(struct in6_addr *A, struct in6_addr *B) { + +#ifndef s6_addr32 +#define s6_addr32 __u6_addr.__u6_addr32 +#endif /*s6_addr32*/ + #define a(i) A->s6_addr32[i] #define b(i) B->s6_addr32[i]