From owner-svn-src-stable@FreeBSD.ORG Sat Apr 16 09:56:28 2011 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E4E91065670; Sat, 16 Apr 2011 09:56:28 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0CAFC8FC08; Sat, 16 Apr 2011 09:56:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p3G9uR9r098929; Sat, 16 Apr 2011 09:56:27 GMT (envelope-from brucec@svn.freebsd.org) Received: (from brucec@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p3G9uRCq098927; Sat, 16 Apr 2011 09:56:27 GMT (envelope-from brucec@svn.freebsd.org) Message-Id: <201104160956.p3G9uRCq098927@svn.freebsd.org> From: Bruce Cran Date: Sat, 16 Apr 2011 09:56:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r220695 - stable/8/usr.bin/netstat X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2011 09:56:28 -0000 Author: brucec Date: Sat Apr 16 09:56:27 2011 New Revision: 220695 URL: http://svn.freebsd.org/changeset/base/220695 Log: MFC r219613: Fix typo. Modified: stable/8/usr.bin/netstat/sctp.c Directory Properties: stable/8/usr.bin/netstat/ (props changed) Modified: stable/8/usr.bin/netstat/sctp.c ============================================================================== --- stable/8/usr.bin/netstat/sctp.c Sat Apr 16 09:39:08 2011 (r220694) +++ stable/8/usr.bin/netstat/sctp.c Sat Apr 16 09:56:27 2011 (r220695) @@ -563,7 +563,7 @@ sctp_stats(u_long off, const char *name, p(sctps_sendfastretrans, "\t\t%ju fast retransmitted DATA chunk%s\n"); p(sctps_sendmultfastretrans, "\t\t%ju FR'%s that happened more " "than once to same chunk\n"); - p(sctps_sendheartbeat, "\t\t%ju intput HB chunk%s\n"); + p(sctps_sendheartbeat, "\t\t%ju output HB chunk%s\n"); p(sctps_sendecne, "\t\t%ju output ECNE chunk%s\n"); p(sctps_sendauth, "\t\t%ju output AUTH chunk%s\n"); p1a(sctps_senderrors, "\t\t%ju ip_output error counter\n");