svn commit: r224575 - head/sys/netinet

Gleb Smirnoff glebius at FreeBSD.org
Mon Aug 1 13:41:39 UTC 2011


Author: glebius
Date: Mon Aug  1 13:41:38 2011
New Revision: 224575
URL: http://svn.freebsd.org/changeset/base/224575

Log:
  Add missing break; in r223593.
  
  Submitted by:	sem
  Pointy hat to:	glebius
  Approved by:	re (kib)

Modified:
  head/sys/netinet/ip_divert.c

Modified: head/sys/netinet/ip_divert.c
==============================================================================
--- head/sys/netinet/ip_divert.c	Mon Aug  1 13:40:48 2011	(r224574)
+++ head/sys/netinet/ip_divert.c	Mon Aug  1 13:41:38 2011	(r224575)
@@ -410,6 +410,7 @@ div_output(struct socket *so, struct mbu
 			}
 
 			ip6->ip6_plen = ntohs(ip6->ip6_plen);
+			break;
 		    }
 #endif
 		default:


More information about the svn-src-all mailing list