mirror of https://github.com/pygos/pkg-utils.git
Fix argument requirements in unpack command line switches
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>master
parent
26a7d3f3e7
commit
c800554979
|
@ -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 },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue