Date: Mon, 29 Oct 2012 20:44:29 +0000 (UTC) From: Michael Tuexen <tuexen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r242326 - head/sys/netinet Message-ID: <201210292044.q9TKiTWR040695@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tuexen Date: Mon Oct 29 20:44:29 2012 New Revision: 242326 URL: http://svn.freebsd.org/changeset/base/242326 Log: Add braces (as used elsewhere in the SCTP code). Modified: head/sys/netinet/sctp_output.c Modified: head/sys/netinet/sctp_output.c ============================================================================== --- head/sys/netinet/sctp_output.c Mon Oct 29 20:42:48 2012 (r242325) +++ head/sys/netinet/sctp_output.c Mon Oct 29 20:44:29 2012 (r242326) @@ -3981,9 +3981,9 @@ sctp_lowlevel_chunk_output(struct sctp_i } 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();
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210292044.q9TKiTWR040695>