svn commit: r247999 - stable/8/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Fri Mar 8 00:28:51 UTC 2013
Author: tuexen
Date: Fri Mar 8 00:28:50 2013
New Revision: 247999
URL: http://svnweb.freebsd.org/changeset/base/247999
Log:
MFC r242326:
Add braces (as used elsewhere in the SCTP code).
Modified:
stable/8/sys/netinet/sctp_output.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/netinet/ (props changed)
Modified: stable/8/sys/netinet/sctp_output.c
==============================================================================
--- stable/8/sys/netinet/sctp_output.c Fri Mar 8 00:23:42 2013 (r247998)
+++ stable/8/sys/netinet/sctp_output.c Fri Mar 8 00:28:50 2013 (r247999)
@@ -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
mailing list