svn commit: r252937 - stable/9/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Sun Jul 7 12:29:02 UTC 2013
Author: tuexen
Date: Sun Jul 7 12:29:01 2013
New Revision: 252937
URL: http://svnweb.freebsd.org/changeset/base/252937
Log:
MFC r242326:
Add braces (as used elsewhere in the SCTP code).
Modified:
stable/9/sys/netinet/sctp_output.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/netinet/sctp_output.c
==============================================================================
--- stable/9/sys/netinet/sctp_output.c Sun Jul 7 12:25:28 2013 (r252936)
+++ stable/9/sys/netinet/sctp_output.c Sun Jul 7 12:29:01 2013 (r252937)
@@ -3981,9 +3981,9 @@ sctp_lowlevel_chunk_output(struct sctp_i
}
if ((nofragment_flag) && (port == 0)) {
ip->ip_off = IP_DF;
- } else
+ } else {
ip->ip_off = 0;
-
+ }
/* FreeBSD has a function for ip_id's */
ip->ip_id = ip_newid();
More information about the svn-src-stable-9
mailing list