diff options
author | ru <ru@FreeBSD.org> | 2005-02-09 17:37:39 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2005-02-09 17:37:39 +0000 |
commit | 978b8f7f1d9acca15190b3e1c3c13206ae9ff3be (patch) | |
tree | f2459cf124e940897222cf3c2d1d840dc7a981a5 /bin/setfacl | |
parent | ecbdad392c9834599fff9cd2683900672354f4c0 (diff) | |
download | FreeBSD-src-978b8f7f1d9acca15190b3e1c3c13206ae9ff3be.zip FreeBSD-src-978b8f7f1d9acca15190b3e1c3c13206ae9ff3be.tar.gz |
Sync program's usage() with manpage's SYNOPSIS.
Diffstat (limited to 'bin/setfacl')
-rw-r--r-- | bin/setfacl/setfacl.1 | 4 | ||||
-rw-r--r-- | bin/setfacl/setfacl.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/setfacl/setfacl.1 b/bin/setfacl/setfacl.1 index c770846..166328f 100644 --- a/bin/setfacl/setfacl.1 +++ b/bin/setfacl/setfacl.1 @@ -35,9 +35,9 @@ .Nm .Op Fl bdhkn .Op Fl m Ar entries -.Op Fl M Ar file1 +.Op Fl M Ar file .Op Fl x Ar entries -.Op Fl X Ar file1 +.Op Fl X Ar file .Op Ar .Sh DESCRIPTION The diff --git a/bin/setfacl/setfacl.c b/bin/setfacl/setfacl.c index 6982d31..e04feac 100644 --- a/bin/setfacl/setfacl.c +++ b/bin/setfacl/setfacl.c @@ -96,8 +96,8 @@ static void usage(void) { - fprintf(stderr, "usage: setfacl [-bdhkn] [-m entries] [-M file1] " - "[-x entries] [-X file2] [file ...]\n"); + fprintf(stderr, "usage: setfacl [-bdhkn] [-m entries] [-M file] " + "[-x entries] [-X file] [file ...]\n"); exit(1); } |