diff options
author | Paolo Bonzini | 2021-01-20 15:42:35 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-01-23 21:55:07 +0100 |
commit | 653c97473530b4d0e79950103447bad99b64ed79 (patch) | |
tree | bcef6bd95df70dee0db6d75c4481602ac2ed621f /ui/vnc-stubs.c | |
parent | qmp: remove deprecated "change" command (diff) | |
download | qemu-653c97473530b4d0e79950103447bad99b64ed79.tar.gz qemu-653c97473530b4d0e79950103447bad99b64ed79.tar.xz qemu-653c97473530b4d0e79950103447bad99b64ed79.zip |
vnc: support "-vnc help"
Use qemu_opts_parse_noisily now that HMP does not call
vnc_parse anymore.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20210120144235.345983-4-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'ui/vnc-stubs.c')
-rw-r--r-- | ui/vnc-stubs.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui/vnc-stubs.c b/ui/vnc-stubs.c index c6b737dcec..b4eb3ce718 100644 --- a/ui/vnc-stubs.c +++ b/ui/vnc-stubs.c @@ -10,13 +10,12 @@ int vnc_display_pw_expire(const char *id, time_t expires) { return -ENODEV; }; -QemuOpts *vnc_parse(const char *str, Error **errp) +void vnc_parse(const char *str) { if (strcmp(str, "none") == 0) { - return NULL; + return; } - error_setg(errp, "VNC support is disabled"); - return NULL; + error_setg(&error_fatal, "VNC support is disabled"); } int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp) { |