qemu: Remove unnecessary quoting from the process name argument

This commit is contained in:
John Morrissey 2010-11-12 14:19:20 +01:00 committed by Matthias Bolte
parent d941eb13e4
commit 90afacb3b0

View File

@ -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);