mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-20 14:03:53 +03:00
34fbf1a809
QEMU CLI option parsing requires doubling the commas for values, this seems to be also used when a combined option is used to pass down the key=value pairs to the internal options, like for the combined -drive option that was replaced by the slightly lower-level blockdev option in commit 668b8383 ("file restore: qemu helper: switch to more modern blockdev option for drives"). So there we now could drop the comma duplication as blockdev directly interprets these options, thus no need for escaping the comma. We missed two instances because they were not part of the "main" format string, which broke some use cases. Fixes: 668b8383 ("file restore: qemu helper: switch to more modern blockdev option for drives") Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Tested-by: Mira Limbeck <m.limbeck@proxmox.com> [ TL: add more context, but it's a bit guesstimation ] Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>