From 3de845ed0aca3e9740cfb383e0f35cf33f6cec15 Mon Sep 17 00:00:00 2001 From: luigi Date: Sun, 4 Apr 2004 11:52:09 +0000 Subject: whoops, forgot to fix these places where arpresolve() was used Detected by: tinderbox --- sys/net/if_arcsubr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/net/if_arcsubr.c') diff --git a/sys/net/if_arcsubr.c b/sys/net/if_arcsubr.c index 919c0de..47d7b5c 100644 --- a/sys/net/if_arcsubr.c +++ b/sys/net/if_arcsubr.c @@ -136,7 +136,7 @@ arc_output(ifp, m, dst, rt0) adst = arcbroadcastaddr; /* ARCnet broadcast address */ else if (ifp->if_flags & IFF_NOARP) adst = ntohl(SIN(dst)->sin_addr.s_addr) & 0xFF; - else if (!arpresolve(ifp, rt, m, dst, &adst, rt0)) + else if (!arpresolve(ifp, rt, m, dst, &adst)) return 0; /* not resolved yet */ atype = (ifp->if_flags & IFF_LINK0) ? -- cgit v1.1