diff options
author | Pavel Shilovsky <pshilov@microsoft.com> | 2019-04-18 12:32:02 -0700 |
---|---|---|
committer | Pavel Shilovsky <pshilov@microsoft.com> | 2019-04-18 12:32:02 -0700 |
commit | f2955af017f604003e3c8c3efe0fb0fb85584cea (patch) | |
tree | d28c96219329c626c9ce7dc218ec6f0d91340209 | |
parent | dfe497f9f51983147a7caa69f62bb6648ea507ec (diff) | |
download | cifs-utils-f2955af017f604003e3c8c3efe0fb0fb85584cea.tar.gz cifs-utils-f2955af017f604003e3c8c3efe0fb0fb85584cea.tar.bz2 cifs-utils-f2955af017f604003e3c8c3efe0fb0fb85584cea.zip |
getcifsacl: Fix usage message to include multiple files
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
-rw-r--r-- | getcifsacl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/getcifsacl.c b/getcifsacl.c index 556178a..bea81ee 100644 --- a/getcifsacl.c +++ b/getcifsacl.c @@ -330,7 +330,7 @@ getcifsacl_usage(const char *prog) fprintf(stderr, "%s: Display CIFS/NTFS ACL in a security descriptor of a file object\n", prog); - fprintf(stderr, "Usage: %s [option] <file_name>\n", prog); + fprintf(stderr, "Usage: %s [option] <file_name1> [<file_name2>,<file_name3>,...]\n", prog); fprintf(stderr, "Valid options:\n"); fprintf(stderr, "\t-h Display this help text\n"); fprintf(stderr, "\n"); @@ -410,7 +410,7 @@ main(const int argc, char *const argv[]) if (optind >= argc) { printf("you must specify a filename after options.\n"); - printf("Usage: getcifsacl [option] <file_name>\n"); + printf("Usage: getcifsacl [option] <file_name1> [<file_name2>,<file_name3>,...]\n"); goto out; } |