diff options
author | bz <bz@FreeBSD.org> | 2016-05-03 16:01:53 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2016-05-03 16:01:53 +0000 |
commit | a0e5ea962e5b88a8d2d5573314bd38d106186be7 (patch) | |
tree | 73686297c8ca3a098cf6a1f1082687c9e1746474 /sys/net | |
parent | 2f257d03701d57b78fa0db21f5f4fec63cfa4260 (diff) | |
download | FreeBSD-src-a0e5ea962e5b88a8d2d5573314bd38d106186be7.zip FreeBSD-src-a0e5ea962e5b88a8d2d5573314bd38d106186be7.tar.gz |
Remove the most useful INET || INET6 check leftover from whenever,
doing nothing.
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_ethersubr.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 8698647..6f0e6e3 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -426,9 +426,6 @@ ether_output_frame(struct ifnet *ifp, struct mbuf *m) return ((ifp->if_transmit)(ifp, m)); } -#if defined(INET) || defined(INET6) -#endif - /* * Process a received Ethernet packet; the packet is in the * mbuf chain m with the ethernet header at the front. |