From owner-svn-src-all@freebsd.org Tue Dec 8 07:31:27 2015 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 6BE3D9D4753; Tue, 8 Dec 2015 07:31:27 +0000 (UTC) (envelope-from ae@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 39A6414B8; Tue, 8 Dec 2015 07:31:27 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB87VQmJ073556; Tue, 8 Dec 2015 07:31:26 GMT (envelope-from ae@FreeBSD.org) Received: (from ae@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB87VQ53073555; Tue, 8 Dec 2015 07:31:26 GMT (envelope-from ae@FreeBSD.org) Message-Id: <201512080731.tB87VQ53073555@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ae set sender to ae@FreeBSD.org using -f From: "Andrey V. Elsukov" Date: Tue, 8 Dec 2015 07:31:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r291987 - stable/10/sys/netinet6 X-SVN-Group: stable-10 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.20 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: Tue, 08 Dec 2015 07:31:27 -0000 Author: ae Date: Tue Dec 8 07:31:26 2015 New Revision: 291987 URL: https://svnweb.freebsd.org/changeset/base/291987 Log: Fix typo in r291986. (this is derect commit to stable/10) Modified: stable/10/sys/netinet6/mld6.c Modified: stable/10/sys/netinet6/mld6.c ============================================================================== --- stable/10/sys/netinet6/mld6.c Tue Dec 8 07:26:16 2015 (r291986) +++ stable/10/sys/netinet6/mld6.c Tue Dec 8 07:31:26 2015 (r291987) @@ -2995,7 +2995,7 @@ mld_v2_dispatch_general_query(struct mld * many packets, we should finish sending them before starting of * queuing the new reply. */ - if (mli->mli_gq.ifq_head != NULL) { + if (mli->mli_gq.ifq_head != NULL) goto send; ifp = mli->mli_ifp;