X-Git-Url: https://git.proxmox.com/?p=pve-qemu-kvm.git;a=blobdiff_plain;f=debian%2Fpatches%2Fpve%2F0026-use-whitespace-between-VERSION-and-PKGVERSION.patch;h=773bd4998ee1dff068677c9ad532cd92f61a7c06;hp=b7547afb9ae2632e7af7d10c03a9cb9f38947611;hb=dcfd9c72bc5bb92f7715f7eb52e6610bc629a1c8;hpb=9c3bec3938ec91a6c9e0717795fe1ade2b147910 diff --git a/debian/patches/pve/0026-use-whitespace-between-VERSION-and-PKGVERSION.patch b/debian/patches/pve/0026-use-whitespace-between-VERSION-and-PKGVERSION.patch index b7547af..773bd49 100644 --- a/debian/patches/pve/0026-use-whitespace-between-VERSION-and-PKGVERSION.patch +++ b/debian/patches/pve/0026-use-whitespace-between-VERSION-and-PKGVERSION.patch @@ -1,7 +1,7 @@ -From 017016151cb8f9a364f0b0006603772620966d5a Mon Sep 17 00:00:00 2001 +From 7329980dbe0b2c40a7262c4ea4946dfb23c189c6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 9 Dec 2015 16:50:05 +0100 -Subject: [PATCH 26/47] use whitespace between VERSION and PKGVERSION +Subject: [PATCH 26/48] use whitespace between VERSION and PKGVERSION Our kvm version parser expects a white space or comma after the version string, see PVE::QemuServer::kvm_user_version() @@ -10,15 +10,15 @@ the version string, see PVE::QemuServer::kvm_user_version() 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c -index c01b1b5..0b5a721 100644 +index 19afd47..d0780a4 100644 --- a/vl.c +++ b/vl.c -@@ -1920,7 +1920,7 @@ static void main_loop(void) +@@ -1909,7 +1909,7 @@ static void main_loop(void) static void version(void) { -- printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", " -+ printf("QEMU emulator version " QEMU_VERSION " " QEMU_PKGVERSION ", " +- printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION "\n" ++ printf("QEMU emulator version " QEMU_VERSION " " QEMU_PKGVERSION "\n" QEMU_COPYRIGHT "\n"); }