From: Martin T. <mto...@gm...> - 2017-10-11 11:10:58
|
Using an invocation like '--generation --uuid' means that --uuid is the argument to --generation and then --uuid doesn't get parsed. --- src/evmctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evmctl.c b/src/evmctl.c index c54efbb..4fce4ac 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -1580,7 +1580,7 @@ static struct option opts[] = { {"uid", 1, 0, 131}, {"gid", 1, 0, 132}, {"mode", 1, 0, 133}, - {"generation", 1, 0, 134}, + {"generation", 2, 0, 134}, {"ima", 1, 0, 135}, {"selinux", 1, 0, 136}, {"caps", 2, 0, 137}, -- 2.7.4 |