svn commit: r299824 - head/sys/netinet6

Mark Johnston markj at FreeBSD.org
Sun May 15 03:01:41 UTC 2016


Author: markj
Date: Sun May 15 03:01:40 2016
New Revision: 299824
URL: https://svnweb.freebsd.org/changeset/base/299824

Log:
  Remove an always-false error check in the AIFADDR_IN6 handler.
  
  CID:		1250792
  MFC after:	1 week

Modified:
  head/sys/netinet6/in6.c

Modified: head/sys/netinet6/in6.c
==============================================================================
--- head/sys/netinet6/in6.c	Sun May 15 02:58:39 2016	(r299823)
+++ head/sys/netinet6/in6.c	Sun May 15 03:01:40 2016	(r299824)
@@ -697,9 +697,8 @@ in6_control(struct socket *so, u_long cm
 		 * that is, this address might make other addresses detached.
 		 */
 		pfxlist_onlink_check();
+
 aifaddr_out:
-		if (error != 0 || ia == NULL)
-			break;
 		/*
 		 * Try to clear the flag when a new IPv6 address is added
 		 * onto an IFDISABLED interface and it succeeds.


More information about the svn-src-all mailing list