mirror of
https://github.com/pygos/pkg-utils.git
synced 2024-11-22 12:59:46 +01:00
Fix argument requirements in unpack command line switches
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
parent
26a7d3f3e7
commit
c800554979
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@
|
||||||
|
|
||||||
static const struct option long_opts[] = {
|
static const struct option long_opts[] = {
|
||||||
{ "root", required_argument, NULL, 'r' },
|
{ "root", required_argument, NULL, 'r' },
|
||||||
{ "no-chown", required_argument, NULL, 'o' },
|
{ "no-chown", no_argument, NULL, 'o' },
|
||||||
{ "no-chmod", required_argument, NULL, 'm' },
|
{ "no-chmod", no_argument, NULL, 'm' },
|
||||||
{ NULL, 0, NULL, 0 },
|
{ NULL, 0, NULL, 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue