]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0003-qemu-img-return-success-on-info-without-snapshots.patch
bump version to 2.11.1-1
[pve-qemu.git] / debian / patches / pve / 0003-qemu-img-return-success-on-info-without-snapshots.patch
CommitLineData
23102ed6 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
95259824
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 14:18:46 +0100
23102ed6 4Subject: [PATCH] qemu-img: return success on info without snapshots
95259824
WB
5
6---
7 qemu-img.c | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10diff --git a/qemu-img.c b/qemu-img.c
6838f038 11index 68b375f998..f8a39dd195 100644
95259824
WB
12--- a/qemu-img.c
13+++ b/qemu-img.c
6838f038
WB
14@@ -2594,7 +2594,8 @@ static int img_info(int argc, char **argv)
15 list = collect_image_info_list(image_opts, filename, fmt, chain,
16 force_share);
95259824
WB
17 if (!list) {
18- return 1;
19+ // return success if snapshot does not exists
20+ return 0;
21 }
22
23 switch (output_format) {
24--
45169293 252.11.0
95259824 26