Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHouder <houder@xs4all.nl>2015-12-19 23:00:46 +0300
committerCorinna Vinschen <corinna@vinschen.de>2015-12-19 23:01:59 +0300
commitf97241dcb4d9b68a4b053ec0937bbeca8defaac5 (patch)
tree260a1d186f53bcf5b2a0df19b850de06b5f61df3 /winsup/utils/setfacl.c
parentac39f7b4e819b8200cda8be56c82964a6e18f909 (diff)
Fix missing arg requirement for setfacl -x option
* setfacl.cc (opts): Add colon to x option. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/utils/setfacl.c')
-rw-r--r--winsup/utils/setfacl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/setfacl.c b/winsup/utils/setfacl.c
index 4ec5f2010..a88fbcbb6 100644
--- a/winsup/utils/setfacl.c
+++ b/winsup/utils/setfacl.c
@@ -634,7 +634,7 @@ struct option longopts[] = {
{"version", no_argument, NULL, 'V'},
{0, no_argument, NULL, 0}
};
-const char *opts = "bd:f:hkm:nrs:Vx";
+const char *opts = "bd:f:hkm:nrs:Vx:";
static void
print_version ()