svn commit: r184711 - head/sys/net
Bjoern A. Zeeb
bz at FreeBSD.org
Thu Nov 6 01:27:47 PST 2008
Author: bz
Date: Thu Nov 6 09:27:47 2008
New Revision: 184711
URL: http://svn.freebsd.org/changeset/base/184711
Log:
Check for INET not AF_INET in #ifdef. Makes it compile without INET.
MFC after: 2 months
Modified:
head/sys/net/if_fwsubr.c
Modified: head/sys/net/if_fwsubr.c
==============================================================================
--- head/sys/net/if_fwsubr.c Thu Nov 6 09:18:29 2008 (r184710)
+++ head/sys/net/if_fwsubr.c Thu Nov 6 09:27:47 2008 (r184711)
@@ -136,7 +136,7 @@ firewire_output(struct ifnet *ifp, struc
}
switch (dst->sa_family) {
-#ifdef AF_INET
+#ifdef INET
case AF_INET:
/*
* Only bother with arp for unicast. Allocation of
More information about the svn-src-head
mailing list