]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/old/fix-qemu-img-snapshot-removal.patch
bump version to 2.9.0-1~rc2+5
[pve-qemu-kvm.git] / debian / patches / old / fix-qemu-img-snapshot-removal.patch
1 Index: new/qemu-img.c
2 ===================================================================
3 --- new.orig/qemu-img.c 2014-11-20 06:45:06.000000000 +0100
4 +++ new/qemu-img.c 2014-11-20 06:51:05.000000000 +0100
5 @@ -2080,7 +2080,8 @@
6
7 list = collect_image_info_list(filename, fmt, chain);
8 if (!list) {
9 - return 1;
10 + // return success if snapshot does not exists
11 + return 0;
12 }
13
14 switch (output_format) {