svn commit: r364619 - stable/12/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Mon Aug 24 08:22:37 UTC 2020


Author: tuexen
Date: Mon Aug 24 08:22:37 2020
New Revision: 364619
URL: https://svnweb.freebsd.org/changeset/base/364619

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

Modified:
  stable/12/sys/netinet/sctputil.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/netinet/sctputil.c
==============================================================================
--- stable/12/sys/netinet/sctputil.c	Mon Aug 24 08:20:49 2020	(r364618)
+++ stable/12/sys/netinet/sctputil.c	Mon Aug 24 08:22:37 2020	(r364619)
@@ -6841,6 +6841,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-stable-12 mailing list