svn commit: r188387 - head/sys/netinet

Randall Stewart rrs at FreeBSD.org
Mon Feb 9 03:41:57 PST 2009


Author: rrs
Date: Mon Feb  9 11:41:54 2009
New Revision: 188387
URL: http://svn.freebsd.org/changeset/base/188387

Log:
  Fix INET only build breakage with SCTP - pointy hat to me :-)

Modified:
  head/sys/netinet/sctputil.c

Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c	Mon Feb  9 11:32:23 2009	(r188386)
+++ head/sys/netinet/sctputil.c	Mon Feb  9 11:41:54 2009	(r188387)
@@ -6550,7 +6550,9 @@ sctp_log_trace(uint32_t subsys, const ch
 #include <netinet/udp.h>
 #include <netinet/udp_var.h>
 #include <sys/proc.h>
+#ifdef INET6
 #include <netinet6/sctp6_var.h>
+#endif
 
 static void
 sctp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *ignored)


More information about the svn-src-all mailing list