]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: Remove unnecessary quoting from the process name argument
authorJohn Morrissey <jwm@horde.net>
Fri, 12 Nov 2010 13:19:20 +0000 (14:19 +0100)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Fri, 12 Nov 2010 13:19:20 +0000 (14:19 +0100)
src/qemu/qemu_conf.c

index 92797f1e5a928f45572066d37aae3b630e4543cd..83a117aade8388a7a0f2840590bd9b71355f5c22 100644 (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);