]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/fix-qemu-img-snapshot-removal.patch
refresh quilt patches
[pve-qemu-kvm.git] / debian / patches / fix-qemu-img-snapshot-removal.patch
1 Index: new/qemu-img.c
2 ===================================================================
3 --- new.orig/qemu-img.c 2014-07-16 11:53:56.000000000 +0200
4 +++ new/qemu-img.c 2014-07-16 12:01:29.000000000 +0200
5 @@ -1931,7 +1931,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) {