Add braces (as used elsewhere in the SCTP code).

This commit is contained in:
Michael Tuexen 2012-10-29 20:44:29 +00:00
parent 09c1c8563a
commit 24d4ce2c87
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242326

View File

@ -3981,9 +3981,9 @@ sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
}
if ((nofragment_flag) && (port == 0)) {
ip->ip_off = htons(IP_DF);
} else
} else {
ip->ip_off = htons(0);
}
/* FreeBSD has a function for ip_id's */
ip->ip_id = ip_newid();