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:
parent
ac39f7b4e8
commit
f97241dcb4
|
@ -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
|
||||
|
|
|
@ -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 ()
|
||||
|
|
Loading…
Reference in New Issue