svn commit: r272754 - stable/10/sys/netinet6

Michael Tuexen tuexen at FreeBSD.org
Wed Oct 8 15:45:16 UTC 2014


Author: tuexen
Date: Wed Oct  8 15:45:15 2014
New Revision: 272754
URL: https://svnweb.freebsd.org/changeset/base/272754

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

Modified:
  stable/10/sys/netinet6/udp6_usrreq.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet6/udp6_usrreq.c
==============================================================================
--- stable/10/sys/netinet6/udp6_usrreq.c	Wed Oct  8 15:44:11 2014	(r272753)
+++ stable/10/sys/netinet6/udp6_usrreq.c	Wed Oct  8 15:45:15 2014	(r272754)
@@ -263,7 +263,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-stable-10 mailing list