svn commit: r225584 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Sep 15 12:20:53 UTC 2011


Author: tuexen
Date: Thu Sep 15 12:20:52 2011
New Revision: 225584
URL: http://svn.freebsd.org/changeset/base/225584

Log:
  Fix a typo introduced in
  http://svn.freebsd.org/changeset/base/225571
  Reported by Ilya A. Arkhipov.
  
  Approved by: re
  MFC after: 1 month.

Modified:
  head/sys/netinet/sctp_asconf.c

Modified: head/sys/netinet/sctp_asconf.c
==============================================================================
--- head/sys/netinet/sctp_asconf.c	Thu Sep 15 12:15:36 2011	(r225583)
+++ head/sys/netinet/sctp_asconf.c	Thu Sep 15 12:20:52 2011	(r225584)
@@ -242,7 +242,7 @@ sctp_process_asconf_add_ip(struct mbuf *
 		sin->sin_addr.s_addr = v4addr->addr;
 		if ((sin->sin_addr.s_addr == INADDR_BROADCAST) ||
 		    IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) {
-			bad_address = 1;;
+			bad_address = 1;
 		}
 		if (sin->sin_addr.s_addr == INADDR_ANY)
 			zero_address = 1;


More information about the svn-src-all mailing list