summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-22 23:22:38 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-12-22 23:22:38 +0000
commit188c0b0badcd4e12dc300cdec014d62f3548e634 (patch)
tree33e3dab49c3f936eb0672387a25b9b84fc3c6384 /usr.bin
parentaa6078d2c94a5d18c035b792a61d08667bf43a0e (diff)
gaurantee a space after the first string; janus@area319.de
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/showmount/showmount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/showmount/showmount.c b/usr.bin/showmount/showmount.c
index bee09de571e..4338359640d 100644
--- a/usr.bin/showmount/showmount.c
+++ b/usr.bin/showmount/showmount.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: showmount.c,v 1.14 2003/12/12 02:14:36 deraadt Exp $ */
+/* $OpenBSD: showmount.c,v 1.15 2005/12/22 23:22:37 deraadt Exp $ */
/* $NetBSD: showmount.c,v 1.7 1996/05/01 18:14:10 cgd Exp $ */
/*
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)showmount.c 8.3 (Berkeley) 3/29/95";
#endif
-static char rcsid[] = "$OpenBSD: showmount.c,v 1.14 2003/12/12 02:14:36 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: showmount.c,v 1.15 2005/12/22 23:22:37 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -214,7 +214,7 @@ main(int argc, char *argv[])
exp = exports;
while (exp) {
strnvis(vp, exp->ex_dirp, sizeof vp, VIS_CSTYLE);
- printf("%-35s", vp);
+ printf("%-34s ", vp);
grp = exp->ex_groups;
if (grp == NULL) {
printf("Everyone\n");