svn commit: r271670 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Tue Sep 16 10:57:56 UTC 2014


Author: tuexen
Date: Tue Sep 16 10:57:55 2014
New Revision: 271670
URL: http://svnweb.freebsd.org/changeset/base/271670

Log:
  Make a type conversion explicit. When compiling this code on
  Windows as part of the SCTP userland stack, this fixes a
  warning reported by Peter Kasting from Google.
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctp_output.c

Modified: head/sys/netinet/sctp_output.c
==============================================================================
--- head/sys/netinet/sctp_output.c	Tue Sep 16 09:50:19 2014	(r271669)
+++ head/sys/netinet/sctp_output.c	Tue Sep 16 10:57:55 2014	(r271670)
@@ -11301,7 +11301,7 @@ sctp_send_hb(struct sctp_tcb *stcb, stru
 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
 	/* Did our user request this one, put it in */
-	hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family;
+	hb->heartbeat.hb_info.addr_family = (uint8_t) net->ro._l_addr.sa.sa_family;
 	hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
 		/*


More information about the svn-src-all mailing list