svn commit: r222077 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Wed May 18 19:49:40 UTC 2011


Author: tuexen
Date: Wed May 18 19:49:39 2011
New Revision: 222077
URL: http://svn.freebsd.org/changeset/base/222077

Log:
  Unbreak INET-less build.
  Reported by bz@
  MFC after: 1 week

Modified:
  head/sys/netinet/sctp_output.c

Modified: head/sys/netinet/sctp_output.c
==============================================================================
--- head/sys/netinet/sctp_output.c	Wed May 18 19:46:26 2011	(r222076)
+++ head/sys/netinet/sctp_output.c	Wed May 18 19:49:39 2011	(r222077)
@@ -3129,8 +3129,8 @@ plan_d:
 	}
 #endif
 out:
-	if (sifa) {
 #ifdef INET
+	if (sifa) {
 		if (retried == 1) {
 			LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
 				if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {


More information about the svn-src-head mailing list