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

Michael Tuexen tuexen at FreeBSD.org
Mon Aug 24 08:20:50 UTC 2020


Author: tuexen
Date: Mon Aug 24 08:20:49 2020
New Revision: 364618
URL: https://svnweb.freebsd.org/changeset/base/364618

Log:
  MFC r362454:
  Set a variable also in the case of an INET6 only kernel

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:19:25 2020	(r364617)
+++ stable/12/sys/netinet/sctputil.c	Mon Aug 24 08:20:49 2020	(r364618)
@@ -6734,6 +6734,8 @@ sctp_bindx_add_address(struct socket *so, struct sctp_
 		} else {
 			addr_to_use = sa;
 		}
+#else
+		addr_to_use = sa;
 #endif
 		break;
 #endif


More information about the svn-src-all mailing list