From owner-svn-src-all@freebsd.org Sun May 15 03:01:41 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8586FB3B601; Sun, 15 May 2016 03:01:41 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 529BA102E; Sun, 15 May 2016 03:01:41 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4F31e1J052689; Sun, 15 May 2016 03:01:40 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4F31ede052688; Sun, 15 May 2016 03:01:40 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201605150301.u4F31ede052688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Sun, 15 May 2016 03:01:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r299824 - head/sys/netinet6 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2016 03:01:41 -0000 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.