diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-11-09 19:52:01 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-11-09 19:54:36 -0500 |
commit | 2e6303d7f1cac6d8eceb64fd3bc747b61e5f5f84 (patch) | |
tree | d9ff000baf0d5352450a02d086562c23438331c3 | |
parent | scripts/paxmark.sh: have PAX_MARKINGS default to 'none' (diff) | |
download | elfix-2e6303d7f1cac6d8eceb64fd3bc747b61e5f5f84.tar.gz elfix-2e6303d7f1cac6d8eceb64fd3bc747b61e5f5f84.tar.bz2 elfix-2e6303d7f1cac6d8eceb64fd3bc747b61e5f5f84.zip |
install-xattr: -Z and -b flags do not accept arguments
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rw-r--r-- | misc/install-xattr/install-xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c index 5c8a978..1c39e69 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -285,7 +285,7 @@ main(int argc, char* argv[]) }; int option_index; - int c = getopt_long(argc, argv, "dt:g:m:o:S:Z:", long_options, &option_index); + int c = getopt_long(argc, argv, "dt:g:m:o:S:Zb", long_options, &option_index); if (c == -1) |