mirror of https://gitee.com/openkylin/libvirt.git
qemu: Remove unnecessary quoting from the process name argument
This commit is contained in:
parent
d941eb13e4
commit
90afacb3b0
|
@ -4223,7 +4223,7 @@ int qemudBuildCommandLine(virConnectPtr conn,
|
|||
if (driver->setProcessName &&
|
||||
(qemuCmdFlags & QEMUD_CMD_FLAG_NAME_PROCESS)) {
|
||||
char *name;
|
||||
if (virAsprintf(&name, "%s,process=\"qemu:%s\"",
|
||||
if (virAsprintf(&name, "%s,process=qemu:%s",
|
||||
def->name, def->name) < 0)
|
||||
goto no_memory;
|
||||
ADD_ARG_LIT(name);
|
||||
|
|
Loading…
Reference in New Issue