From owner-svn-src-stable-8@FreeBSD.ORG Fri May 27 09:50:30 2011 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FAEE106566B; Fri, 27 May 2011 09:50:30 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2F32C8FC18; Fri, 27 May 2011 09:50:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p4R9oUtK015228; Fri, 27 May 2011 09:50:30 GMT (envelope-from ru@svn.freebsd.org) Received: (from ru@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4R9oUpS015226; Fri, 27 May 2011 09:50:30 GMT (envelope-from ru@svn.freebsd.org) Message-Id: <201105270950.p4R9oUpS015226@svn.freebsd.org> From: Ruslan Ermilov Date: Fri, 27 May 2011 09:50:30 +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: r222349 - stable/8/usr.bin/showmount X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2011 09:50:30 -0000 Author: ru Date: Fri May 27 09:50:29 2011 New Revision: 222349 URL: http://svn.freebsd.org/changeset/base/222349 Log: MFC: r222245: Ensure there is a whitespace after a mount point. PR: 157286 Modified: stable/8/usr.bin/showmount/showmount.c Directory Properties: stable/8/usr.bin/showmount/ (props changed) Modified: stable/8/usr.bin/showmount/showmount.c ============================================================================== --- stable/8/usr.bin/showmount/showmount.c Fri May 27 09:15:56 2011 (r222348) +++ stable/8/usr.bin/showmount/showmount.c Fri May 27 09:50:29 2011 (r222349) @@ -191,7 +191,7 @@ main(argc, argv) printf("Exports list on %s:\n", host); exp = exportslist; while (exp) { - printf("%-35s", exp->ex_dirp); + printf("%-34s ", exp->ex_dirp); grp = exp->ex_groups; if (grp == NULL) { printf("Everyone\n");