[PATCH 5/8] Fixed error where char** not being promoted to const

Ryan Gahagan rgahagan at cs.utexas.edu
Tue Nov 10 21:56:17 UTC 2020


Signed-off-by: Ryan Gahagan <rgahagan at cs.utexas.edu>
---
 tools/virsh-domain.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c
index cda0531a37..9d00cb8b21 100644
--- a/tools/virsh-domain.c
+++ b/tools/virsh-domain.c
@@ -227,7 +227,7 @@ static const vshCmdOptDef opts_attach_disk[] = {
     {.name = "source-protocol",
      .type = VSH_OT_STRING,
      .help = N_("protocol used by disk device source")
-    }
+    },
     {.name = "source-name",
      .type = VSH_OT_STRING,
      .help = N_("name of disk device source")
@@ -629,7 +629,7 @@ cmdAttachDisk(vshControl *ctl, const vshCmd *cmd)
         vshCommandOptStringReq(ctl, cmd, "targetbus", &targetbus) < 0 ||
         vshCommandOptStringReq(ctl, cmd, "alias", &alias) < 0 ||
         vshCommandOptStringReq(ctl, cmd, "sourcetype", &stype) < 0 ||
-        vshCommandOptStringReq(ctl, cmd, "source-host-name", &host_name) < 0 ||
+        vshCommandOptStringReq(ctl, cmd, "source-host-name", (const char **) &host_name) < 0 ||
         vshCommandOptStringReq(ctl, cmd, "source-host-transport", &host_transport) < 0 ||
         vshCommandOptStringReq(ctl, cmd, "source-host-socket", &host_socket) < 0)
         goto cleanup;
-- 
2.29.0




More information about the libvir-list mailing list