diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2000-06-16 21:47:20 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2000-06-16 21:47:20 +0000 |
commit | 73501d656ca05164437c542734297118885750b9 (patch) | |
tree | 67425e428d72378b157a1a44f8f1839fddf27877 /sys/netinet6 | |
parent | 5042942398fd5fe3553c7eb71e912f3412f22eb5 (diff) |
take MIN/MAX from param.h, okay theo@
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/nd6.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c index f0810e46125..f8f2e44caea 100644 --- a/sys/netinet6/nd6.c +++ b/sys/netinet6/nd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6.c,v 1.16 2000/05/19 13:55:17 itojun Exp $ */ +/* $OpenBSD: nd6.c,v 1.17 2000/06/16 21:47:17 provos Exp $ */ /* $KAME: nd6.c,v 1.63 2000/05/17 12:35:59 jinmei Exp $ */ /* @@ -182,7 +182,6 @@ void nd6_setmtu(ifp) struct ifnet *ifp; { -#define MIN(a,b) ((a) < (b) ? (a) : (b)) struct nd_ifinfo *ndi = &nd_ifinfo[ifp->if_index]; u_long oldmaxmtu = ndi->maxmtu; u_long oldlinkmtu = ndi->linkmtu; |