Commit 68719c4bddb85fbcc931a5b7d99ac7c8a0af09b0 added the
p option to control disk format probing, but it wasn't added
to the getopt_long optstring parameter.
Add the p option to the getopt_long optstring parameter.
---
src/security/virt-aa-helper.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
index da7d515..44d1a6d 100644
--- a/src/security/virt-aa-helper.c
+++ b/src/security/virt-aa-helper.c
@@ -960,7 +960,7 @@ vahParseArgv(vahControl * ctl, int argc, char **argv)
{0, 0, 0, 0}
};
- while ((arg = getopt_long(argc, argv, "acdDhrRH:b:u:f:", opt,
+ while ((arg = getopt_long(argc, argv, "acdDhrRH:b:u:p:f:", opt,
&idx)) != -1) {
switch (arg) {
case 'a':
--
1.7.0.4