Fix missing arg requirement for setfacl -x option

* setfacl.cc (opts): Add colon to x option.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Houder 2015-12-19 21:00:46 +01:00 committed by Corinna Vinschen
parent ac39f7b4e8
commit f97241dcb4
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-12-19 Houder <houder@xs4all.nl>
* setfacl.cc (opts): Add colon to x option.
2015-12-06 Corinna Vinschen <corinna@vinschen.de>
* cygpath.cc (absolute_flag): Initialize to CCP_RELATIVE to simplify

View File

@ -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 ()