From owner-svn-src-all@FreeBSD.ORG Wed Mar 4 02:56:33 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 255ECC50; Wed, 4 Mar 2015 02:56:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 1087127B; Wed, 4 Mar 2015 02:56:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t242uWUl062956; Wed, 4 Mar 2015 02:56:32 GMT (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t242uWYL062955; Wed, 4 Mar 2015 02:56:32 GMT (envelope-from marcel@FreeBSD.org) Message-Id: <201503040256.t242uWYL062955@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcel set sender to marcel@FreeBSD.org using -f From: Marcel Moolenaar Date: Wed, 4 Mar 2015 02:56:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r279576 - head/usr.bin/netstat 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.18-1 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: Wed, 04 Mar 2015 02:56:33 -0000 Author: marcel Date: Wed Mar 4 02:56:32 2015 New Revision: 279576 URL: https://svnweb.freebsd.org/changeset/base/279576 Log: Fix typo in dropped-packets attribute (missing s). Pointed-out by: allanjude (excellent catch!) Modified: head/usr.bin/netstat/if.c Modified: head/usr.bin/netstat/if.c ============================================================================== --- head/usr.bin/netstat/if.c Wed Mar 4 02:47:13 2015 (r279575) +++ head/usr.bin/netstat/if.c Wed Mar 4 02:56:32 2015 (r279576) @@ -422,7 +422,7 @@ intpr(int interval, void (*pfunc)(char * show_stat("lu", 8, "received-packets", IFA_STAT(ipackets), link|network); show_stat("lu", 5, "received-errors", IFA_STAT(ierrors), link); - show_stat("lu", 5, "dropped-packet", IFA_STAT(iqdrops), link); + show_stat("lu", 5, "dropped-packets", IFA_STAT(iqdrops), link); if (bflag) show_stat("lu", 10, "received-bytes", IFA_STAT(ibytes), link|network);