summaryrefslogtreecommitdiffstats
path: root/usr.bin/showmount
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2011-05-24 06:56:40 +0000
committerru <ru@FreeBSD.org>2011-05-24 06:56:40 +0000
commit9e9f9bc8987cb18c3cb278bdcb376a924492c693 (patch)
tree6078228b8ce206e322b9c9f87887c1019e60c1d6 /usr.bin/showmount
parent65130c345ca6f12b61100a9589011e2fa5ed43a8 (diff)
downloadFreeBSD-src-9e9f9bc8987cb18c3cb278bdcb376a924492c693.zip
FreeBSD-src-9e9f9bc8987cb18c3cb278bdcb376a924492c693.tar.gz
Ensure there is a whitespace after a mount point.
PR: 157286 Submitted by: Marcus Reid MFC after: 3 days
Diffstat (limited to 'usr.bin/showmount')
-rw-r--r--usr.bin/showmount/showmount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/showmount/showmount.c b/usr.bin/showmount/showmount.c
index f4372b5..2635250 100644
--- a/usr.bin/showmount/showmount.c
+++ b/usr.bin/showmount/showmount.c
@@ -185,7 +185,7 @@ main(int argc, char **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");
OpenPOWER on IntegriCloud