From 5faa66b0032a9bd75770e8d6459abeeb625997ac Mon Sep 17 00:00:00 2001 From: bz Date: Thu, 6 Nov 2008 09:27:47 +0000 Subject: Check for INET not AF_INET in #ifdef. Makes it compile without INET. MFC after: 2 months --- sys/net/if_fwsubr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/net') diff --git a/sys/net/if_fwsubr.c b/sys/net/if_fwsubr.c index e001c29..8d4f159 100644 --- a/sys/net/if_fwsubr.c +++ b/sys/net/if_fwsubr.c @@ -136,7 +136,7 @@ firewire_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst, } switch (dst->sa_family) { -#ifdef AF_INET +#ifdef INET case AF_INET: /* * Only bother with arp for unicast. Allocation of -- cgit v1.1