From owner-svn-src-all@FreeBSD.ORG Fri Feb 14 07:51:08 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 770BC7EE; Fri, 14 Feb 2014 07:51:08 +0000 (UTC) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.69.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F00E6196D; Fri, 14 Feb 2014 07:51:07 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.8/8.14.8) with ESMTP id s1E7p0Pi038185 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 14 Feb 2014 11:51:00 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.8/8.14.8/Submit) id s1E7p0F8038184; Fri, 14 Feb 2014 11:51:00 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 14 Feb 2014 11:51:00 +0400 From: Gleb Smirnoff To: Adrian Chadd Subject: Re: svn commit: r261875 - head/usr.bin/netstat Message-ID: <20140214075100.GD26785@FreeBSD.org> References: <201402140743.s1E7he4O010232@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201402140743.s1E7he4O010232@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 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: Fri, 14 Feb 2014 07:51:08 -0000 On Fri, Feb 14, 2014 at 07:43:40AM +0000, Adrian Chadd wrote: A> Author: adrian A> Date: Fri Feb 14 07:43:39 2014 A> New Revision: 261875 A> URL: http://svnweb.freebsd.org/changeset/base/261875 A> A> Log: A> Reword. A> A> Suggestion: glebius A> A> Modified: A> head/usr.bin/netstat/flowtable.c A> A> Modified: head/usr.bin/netstat/flowtable.c A> ============================================================================== A> --- head/usr.bin/netstat/flowtable.c Fri Feb 14 07:36:04 2014 (r261874) A> +++ head/usr.bin/netstat/flowtable.c Fri Feb 14 07:43:39 2014 (r261875) A> @@ -55,7 +55,7 @@ print_stats(struct flowtable_stat *stat) A> p(ft_collisions, "\t%ju collision%s\n"); A> p(ft_free_checks, "\t%ju free check%s\n"); A> p(ft_frees, "\t%ju free%s\n"); A> - p(ft_fail_lle_invalid, "\t%ju lookups w/ no resolved ARP%s\n"); A> + p(ft_fail_lle_invalid, "\t%ju lookups w/ no resolved Layer 2 address%s\n"); A> A> #undef p2 A> #undef p Oh, sorry this is not correct. We need the plural() output after "lookup", not after "address". We need: 1 lookup w/ no resolved Layer 2 address 2 lookups w/ no resolved Layer 2 address We don't want: 1 lookups w/ no resolved Layer 2 address 2 lookups w/ no resolved Layer 2 addresss -- Totus tuus, Glebius.