]> git.proxmox.com Git - pve-qemu-kvm.git/blob - debian/patches/pve/0030-use-whitespace-between-VERSION-and-PKGVERSION.patch
adding 2.5 pve patches and left-over extra fixes
[pve-qemu-kvm.git] / debian / patches / pve / 0030-use-whitespace-between-VERSION-and-PKGVERSION.patch
1 From 2e29179b3ea1bd1f5db7c03aedc8dcea19980063 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Wed, 9 Dec 2015 16:50:05 +0100
4 Subject: [PATCH 30/41] use whitespace between VERSION and PKGVERSION
5
6 Our kvm version parser expects a white space or comma after
7 the version string, see PVE::QemuServer::kvm_user_version()
8 ---
9 vl.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/vl.c b/vl.c
13 index 5379941..63c6798 100644
14 --- a/vl.c
15 +++ b/vl.c
16 @@ -1934,7 +1934,7 @@ static void main_loop(void)
17
18 static void version(void)
19 {
20 - printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
21 + printf("QEMU emulator version " QEMU_VERSION " " QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
22 }
23
24 static void help(int exitcode)
25 --
26 2.1.4
27