]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/pve/0026-use-whitespace-between-VERSION-and-PKGVERSION.patch
bump version to 2.9.0-1~rc2+5
[pve-qemu-kvm.git] / debian / patches / pve / 0026-use-whitespace-between-VERSION-and-PKGVERSION.patch
CommitLineData
87ba737b 1From 7329980dbe0b2c40a7262c4ea4946dfb23c189c6 Mon Sep 17 00:00:00 2001
ca0fe5f5
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 16:50:05 +0100
adeb0c7a 4Subject: [PATCH 26/48] use whitespace between VERSION and PKGVERSION
ca0fe5f5
WB
5
6Our kvm version parser expects a white space or comma after
7the version string, see PVE::QemuServer::kvm_user_version()
8---
9 vl.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/vl.c b/vl.c
1a91ab45 13index 19afd47..d0780a4 100644
ca0fe5f5
WB
14--- a/vl.c
15+++ b/vl.c
1a91ab45 16@@ -1909,7 +1909,7 @@ static void main_loop(void)
ca0fe5f5
WB
17
18 static void version(void)
19 {
1a91ab45
WB
20- printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION "\n"
21+ printf("QEMU emulator version " QEMU_VERSION " " QEMU_PKGVERSION "\n"
68a30562 22 QEMU_COPYRIGHT "\n");
ca0fe5f5
WB
23 }
24
ca0fe5f5
WB
25--
262.1.4
27