]> git.proxmox.com Git - qemu-server.git/commitdiff
fix #1111: qm showcmd wrong escape sequence
authorWolfgang Link <w.link@proxmox.com>
Wed, 21 Sep 2016 13:14:18 +0000 (15:14 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 4 Oct 2016 06:38:09 +0000 (08:38 +0200)
PVE/QemuServer.pm

index 6f889c1d0ec11433569f3314d7c31ae42e366b8d..f4bb4dd41cbef5c1a0ce008bfce6890ab8b18d11 100644 (file)
@@ -4606,7 +4606,7 @@ sub vm_commandline {
 
     my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults);
 
-    return join(' ', @$cmd);
+    return PVE::Tools::cmd2string($cmd);
 }
 
 sub vm_reset {