9ae3a8
From 867469aa337ac206ee6f4ea1b5c4c0f1ec36696d Mon Sep 17 00:00:00 2001
9ae3a8
From: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Date: Tue, 25 Feb 2014 15:00:03 +0100
9ae3a8
Subject: [PATCH 5/7] qemu-img amend: Support multiple -o options
9ae3a8
9ae3a8
RH-Author: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Message-id: <1393340405-9936-5-git-send-email-kwolf@redhat.com>
9ae3a8
Patchwork-id: 57794
9ae3a8
O-Subject: [RHEL-7.0 qemu-kvm PATCH 4/6] qemu-img amend: Support multiple -o options
9ae3a8
Bugzilla: 1065873
9ae3a8
RH-Acked-by: Juan Quintela <quintela@redhat.com>
9ae3a8
RH-Acked-by: Fam Zheng <famz@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
9ae3a8
Instead of ignoring all option values but the last one, multiple -o
9ae3a8
options now have the same meaning as having a single option with all
9ae3a8
settings in the order of their respective -o options.
9ae3a8
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
Reviewed-by: Jeff Cody <jcody@redhat.com>
9ae3a8
Reviewed-by: Eric Blake <eblake@redhat.com>
9ae3a8
(cherry picked from commit 626f84f39d4ae365a44dbbc0d0dd3c7739c3971a)
9ae3a8
9ae3a8
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
---
9ae3a8
 qemu-img.c | 17 +++++++++++++++--
9ae3a8
 1 file changed, 15 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 qemu-img.c |   17 +++++++++++++++--
9ae3a8
 1 files changed, 15 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
diff --git a/qemu-img.c b/qemu-img.c
9ae3a8
index e7b12c2..5002a56 100644
9ae3a8
--- a/qemu-img.c
9ae3a8
+++ b/qemu-img.c
9ae3a8
@@ -2617,7 +2617,18 @@ static int img_amend(int argc, char **argv)
9ae3a8
                 help();
9ae3a8
                 break;
9ae3a8
             case 'o':
9ae3a8
-                options = optarg;
9ae3a8
+                if (!is_valid_option_list(optarg)) {
9ae3a8
+                    error_report("Invalid option list: %s", optarg);
9ae3a8
+                    ret = -1;
9ae3a8
+                    goto out;
9ae3a8
+                }
9ae3a8
+                if (!options) {
9ae3a8
+                    options = g_strdup(optarg);
9ae3a8
+                } else {
9ae3a8
+                    char *old_options = options;
9ae3a8
+                    options = g_strdup_printf("%s,%s", options, optarg);
9ae3a8
+                    g_free(old_options);
9ae3a8
+                }
9ae3a8
                 break;
9ae3a8
             case 'f':
9ae3a8
                 fmt = optarg;
9ae3a8
@@ -2647,7 +2658,7 @@ static int img_amend(int argc, char **argv)
9ae3a8
 
9ae3a8
     fmt = bs->drv->format_name;
9ae3a8
 
9ae3a8
-    if (is_help_option(options)) {
9ae3a8
+    if (has_help_option(options)) {
9ae3a8
         ret = print_block_option_help(filename, fmt);
9ae3a8
         goto out;
9ae3a8
     }
9ae3a8
@@ -2674,6 +2685,8 @@ out:
9ae3a8
     }
9ae3a8
     free_option_parameters(create_options);
9ae3a8
     free_option_parameters(options_param);
9ae3a8
+    g_free(options);
9ae3a8
+
9ae3a8
     if (ret) {
9ae3a8
         return 1;
9ae3a8
     }
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8