Fix argument requirements in unpack command line switches

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
David Oberhollenzer 2019-02-03 12:21:16 +01:00
parent 26a7d3f3e7
commit c800554979
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@
static const struct option long_opts[] = {
{ "root", required_argument, NULL, 'r' },
{ "no-chown", required_argument, NULL, 'o' },
{ "no-chmod", required_argument, NULL, 'm' },
{ "no-chown", no_argument, NULL, 'o' },
{ "no-chmod", no_argument, NULL, 'm' },
{ NULL, 0, NULL, 0 },
};