commit: 0439f0adc98cc088e997e92f4d4a335bd4d8dcbc
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 9 18:19:31 2019 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Nov 9 18:23:57 2019 +0000
URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=0439f0ad
install-xattr: correct -b flag
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
misc/install-xattr/install-xattr.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/misc/install-xattr/install-xattr.c
b/misc/install-xattr/install-xattr.c
index ab3d041..cc52b2c 100644
--- a/misc/install-xattr/install-xattr.c
+++ b/misc/install-xattr/install-xattr.c
@@ -279,13 +279,13 @@ main(int argc, char* argv[])
{ "owner", required_argument, 0, 'o'},
{ "suffix", required_argument, 0, 'S'},
{ "context", optional_argument, 0, 0 },
- { "backup", optional_argument, 0, 'b'},
+ { "backup", optional_argument, 0, 0 },
{ "help", no_argument, 0, 0 },
{ 0, 0, 0, 0 }
};
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)