svn commit: r269445 - head/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Sat Aug 2 20:37:03 UTC 2014
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 {
More information about the svn-src-all
mailing list