svn commit: r362462 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Sun Jun 21 09:56:10 UTC 2020


Author: tuexen
Date: Sun Jun 21 09:56:09 2020
New Revision: 362462
URL: https://svnweb.freebsd.org/changeset/base/362462

Log:
  Fix the build for an INET6 only configuration.
  
  The fix from the last commit is actually needed twice...
  
  MFC after:		1 week

Modified:
  head/sys/netinet/sctputil.c

Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c	Sun Jun 21 09:24:47 2020	(r362461)
+++ head/sys/netinet/sctputil.c	Sun Jun 21 09:56:09 2020	(r362462)
@@ -6853,6 +6853,8 @@ sctp_bindx_delete_address(struct sctp_inpcb *inp,
 		} else {
 			addr_to_use = sa;
 		}
+#else
+		addr_to_use = sa;
 #endif
 		break;
 #endif


More information about the svn-src-all mailing list