]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/pve/0004-qemu-img-return-success-on-info-without-snapshots.patch
update to qemu-2.9.0-rc2
[pve-qemu-kvm.git] / debian / patches / pve / 0004-qemu-img-return-success-on-info-without-snapshots.patch
1 From adea2808e62d32a9b22bbe3d16c84c92289983a8 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Wed, 9 Dec 2015 14:18:46 +0100
4 Subject: [PATCH 04/47] qemu-img: return success on info without snapshots
5
6 ---
7 qemu-img.c | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10 diff --git a/qemu-img.c b/qemu-img.c
11 index b220cf7..4f7f458 100644
12 --- a/qemu-img.c
13 +++ b/qemu-img.c
14 @@ -2596,7 +2596,8 @@ static int img_info(int argc, char **argv)
15
16 list = collect_image_info_list(image_opts, filename, fmt, chain);
17 if (!list) {
18 - return 1;
19 + // return success if snapshot does not exists
20 + return 0;
21 }
22
23 switch (output_format) {
24 --
25 2.1.4
26