mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
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
This commit is contained in:
parent
831ad37ef2
commit
8a0834ec28
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271670
@ -11301,7 +11301,7 @@ sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
|
||||
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) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user