svn commit: r231429 - stable/8/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Fri Feb 10 20:34:21 UTC 2012


Author: tuexen
Date: Fri Feb 10 20:34:20 2012
New Revision: 231429
URL: http://svn.freebsd.org/changeset/base/231429

Log:
  MFC r221410:
  Add a missing break. This bug was introduced in r221249.

Modified:
  stable/8/sys/netinet/sctp_asconf.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)

Modified: stable/8/sys/netinet/sctp_asconf.c
==============================================================================
--- stable/8/sys/netinet/sctp_asconf.c	Fri Feb 10 20:31:59 2012	(r231428)
+++ stable/8/sys/netinet/sctp_asconf.c	Fri Feb 10 20:34:20 2012	(r231429)
@@ -2930,6 +2930,7 @@ sctp_process_initack_addresses(struct sc
 				}
 				sin.sin_addr.s_addr = a4p->addr;
 				sa = (struct sockaddr *)&sin;
+				break;
 			}
 #endif
 		default:


More information about the svn-src-stable mailing list