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:
@@ -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_1 = now.tv_sec;
|
||||||
hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
|
hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
|
||||||
/* Did our user request this one, put it in */
|
/* 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;
|
hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
|
||||||
if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
|
if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user