]> git.proxmox.com Git - qemu-server.git/commitdiff
fix allocation size in qmrestore
authorDietmar Maurer <dietmar@proxmox.com>
Sat, 3 Nov 2012 06:55:11 +0000 (07:55 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Sat, 3 Nov 2012 06:55:11 +0000 (07:55 +0100)
Makefile
changelog.Debian
qmextract

index 28b411cf5d835571a34120c4aa3e8ccf0b14c2e9..f003ed2c38b87158d952b37a78ed3f829381e47c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ RELEASE=2.2
 
 VERSION=2.0
 PACKAGE=qemu-server
-PKGREL=66
+PKGREL=67
 
 DESTDIR=
 PREFIX=/usr
index 5435cd51aeb0262f040c0a83c6c47aaa4fbbe398..1320bd4417282772d97511d4e0fac2931fc29358 100644 (file)
@@ -1,3 +1,9 @@
+qemu-server (2.0-67) unstable; urgency=low
+
+  * fix allocation size in qmrestore
+
+ -- Proxmox Support Team <support@proxmox.com>  Sat, 03 Nov 2012 07:54:06 +0100
+
 qemu-server (2.0-66) unstable; urgency=low
 
   * vzdump: restore sata drives correctly
index 3b2544564e117e62fac58bea879f6a08edad07d3..f12724ee35b62575a2fd6306d77d24f0141457f4 100755 (executable)
--- a/qmextract
+++ b/qmextract
@@ -162,7 +162,7 @@ sub extract_archive {
        my $cfg = cfs_read_file('storage.cfg');
        my $scfg = PVE::Storage::storage_config($cfg, $storeid);
 
-       my $alloc_size = ($filesize + 1024 - 1)/1024;
+       my $alloc_size = int(($filesize + 1024 - 1)/1024);
        if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
            # hack: we just alloc a small file (32K) - we overwrite it anyways
            $alloc_size = 32;