Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Jun 2020 09:56:09 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362462 - head/sys/netinet
Message-ID:  <202006210956.05L9u97h024287@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006210956.05L9u97h024287>