]> git.proxmox.com Git - pve-qemu.git/blob - debian/patches/pve/0029-vnc-make-x509-imply-tls-again.patch
import stable-4 build files
[pve-qemu.git] / debian / patches / pve / 0029-vnc-make-x509-imply-tls-again.patch
1 From d42052d75321a1af75b039f8e31127b98485ec93 Mon Sep 17 00:00:00 2001
2 From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3 Date: Tue, 12 Jan 2016 09:09:49 +0100
4 Subject: [PATCH 29/47] vnc: make x509 imply tls again
5
6 ---
7 ui/vnc.c | 5 ++---
8 1 file changed, 2 insertions(+), 3 deletions(-)
9
10 diff --git a/ui/vnc.c b/ui/vnc.c
11 index b9f36b5..acbe3bd 100644
12 --- a/ui/vnc.c
13 +++ b/ui/vnc.c
14 @@ -3729,9 +3729,8 @@ void vnc_display_open(const char *id, Error **errp)
15 const char *path;
16 bool tls = false, x509 = false, x509verify = false;
17 tls = qemu_opt_get_bool(opts, "tls", false);
18 - if (tls) {
19 - path = qemu_opt_get(opts, "x509");
20 -
21 + path = qemu_opt_get(opts, "x509");
22 + if (tls || path) {
23 if (path) {
24 x509 = true;
25 } else {
26 --
27 2.1.4
28