svn commit: r272706 - head/sys/netinet6

Michael Tuexen tuexen at FreeBSD.org
Tue Oct 7 16:01:18 UTC 2014


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;
 	}
 
 	/*


More information about the svn-src-head mailing list