From: John Morrissey Date: Fri, 12 Nov 2010 13:19:20 +0000 (+0100) Subject: qemu: Remove unnecessary quoting from the process name argument X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=90afacb3b0329a8a2a0ae4e19f3193368f7e30d9;p=libvirt.git qemu: Remove unnecessary quoting from the process name argument --- diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c index 92797f1e5a..83a117aade 100644 --- a/src/qemu/qemu_conf.c +++ b/src/qemu/qemu_conf.c @@ -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);