From db88404a4e0f1cc1d2f26ed8187690088ba38a2b Mon Sep 17 00:00:00 2001 From: Jason Andryuk Date: Thu, 8 Oct 2020 21:40:32 -0400 Subject: vnc-stubs: Allow -vnc none Currently `-vnc none` is fatal when built with `--disable-vnc`. Make vnc_parse accept "none", so QEMU still run without using vnc. Signed-off-by: Jason Andryuk Message-id: 20201009014032.3507-1-jandryuk@gmail.com Signed-off-by: Gerd Hoffmann --- ui/vnc-stubs.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ui') diff --git a/ui/vnc-stubs.c b/ui/vnc-stubs.c index 06c4ac6296..c6b737dcec 100644 --- a/ui/vnc-stubs.c +++ b/ui/vnc-stubs.c @@ -12,6 +12,9 @@ int vnc_display_pw_expire(const char *id, time_t expires) }; QemuOpts *vnc_parse(const char *str, Error **errp) { + if (strcmp(str, "none") == 0) { + return NULL; + } error_setg(errp, "VNC support is disabled"); return NULL; } -- cgit v1.2.3