From 54c427e0e2a84285a481d755709e5bfb573ccfbf Mon Sep 17 00:00:00 2001 From: Andrew Thompson Date: Thu, 12 Jan 2006 21:05:30 +0000 Subject: [PATCH] Include the bridge interface itself in the special arp handling. PR: 90973 MFC after: 1 week --- sys/netinet/if_ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 28f7d440e8e..620317ff9a3 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -607,7 +607,7 @@ in_arpinput(m) int carp_match = 0; #endif - if (ifp->if_bridge) + if (ifp->if_bridge || ifp->if_type == IFT_BRIDGE) bridged = 1; req_len = arphdr_len2(ifp->if_addrlen, sizeof(struct in_addr));