From owner-cvs-all@FreeBSD.ORG Sat Nov 29 10:16:56 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C00716A4CE; Sat, 29 Nov 2003 10:16:56 -0800 (PST) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9AC543FDF; Sat, 29 Nov 2003 10:16:51 -0800 (PST) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 6719B65414; Fri, 28 Nov 2003 17:38:54 +0000 (GMT) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 86312-01; Fri, 28 Nov 2003 17:38:53 +0000 (GMT) Received: from saboteur.dek.spc.org (unknown [82.147.19.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 9E7D2653F9; Fri, 28 Nov 2003 17:38:53 +0000 (GMT) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 4312C1F; Fri, 28 Nov 2003 17:38:52 +0000 (GMT) Date: Fri, 28 Nov 2003 17:38:51 +0000 From: Bruce M Simpson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20031128173851.GD81432@saboteur.dek.spc.org> Mail-Followup-To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200311281734.hASHYNgx031382@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200311281734.hASHYNgx031382@repoman.freebsd.org> Subject: Re: cvs commit: src/usr.bin/netstat if.c netstat.1 route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Nov 2003 18:16:56 -0000 On Fri, Nov 28, 2003 at 09:34:23AM -0800, Bruce M Simpson wrote: > Log: > Fix some minor nits in netstat whereby large interface names would be > truncated. In environments where many tunnel or vlan interfaces are created, > interface names have high numbers which overflow the field width. I should add that because the resultant output would overflow an 80 column width terminal, the functionality has been folded under the -W flag and the documentation updated accordingly. Whilst I could have broken this into two commits, I chose not to because this is essentially the same issue being addressed by both PRs, ie. field width. BMS