Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Oct 2014 16:01:17 +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: r272706 - head/sys/netinet6
Message-ID:  <201410071601.s97G1H0f065972@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Tue Oct  7 16:01:17 2014
New Revision: 272706
URL: https://svnweb.freebsd.org/changeset/base/272706

Log:
  Fix a bug introduced in
  https://svnweb.freebsd.org/base?view=revision&revision=272347
  
  MFC after: 3 days

Modified:
  head/sys/netinet6/udp6_usrreq.c

Modified: head/sys/netinet6/udp6_usrreq.c
==============================================================================
--- head/sys/netinet6/udp6_usrreq.c	Tue Oct  7 15:21:20 2014	(r272705)
+++ head/sys/netinet6/udp6_usrreq.c	Tue Oct  7 16:01:17 2014	(r272706)
@@ -265,7 +265,7 @@ udp6_input(struct mbuf **mp, int *offp, 
 
 	if (uh_sum != 0) {
 		UDPSTAT_INC(udps_badsum);
-		/*goto badunlocked;*/
+		goto badunlocked;
 	}
 
 	/*



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