Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Aug 2014 20:37:03 +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: r269445 - head/sys/netinet
Message-ID:  <201408022037.s72Kb3it066167@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Sat Aug  2 20:37:02 2014
New Revision: 269445
URL: http://svnweb.freebsd.org/changeset/base/269445

Log:
  Fix a copy and paste error.
  
  X-MFC with: 269436

Modified:
  head/sys/netinet/sctp_usrreq.c

Modified: head/sys/netinet/sctp_usrreq.c
==============================================================================
--- head/sys/netinet/sctp_usrreq.c	Sat Aug  2 20:15:00 2014	(r269444)
+++ head/sys/netinet/sctp_usrreq.c	Sat Aug  2 20:37:02 2014	(r269445)
@@ -5903,7 +5903,7 @@ sctp_setopt(struct socket *so, int optna
 					if (av->assoc_value == 0) {
 						inp->ecn_supported = 0;
 					} else {
-						inp->ecn_supported = 0;
+						inp->ecn_supported = 1;
 					}
 					SCTP_INP_WUNLOCK(inp);
 				} else {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408022037.s72Kb3it066167>