diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-31 14:59:08 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-06-29 14:03:47 +0200 |
commit | 33df7bf3bf43ffa3001cadfe5d5faef2774522d0 (patch) | |
tree | 41eb4266d0c9c0552bb306a29879d72881cc4478 /include/ui | |
parent | cc96677469388bad3d66479379735cf75db069e3 (diff) | |
download | qemu-33df7bf3bf43ffa3001cadfe5d5faef2774522d0.tar.gz qemu-33df7bf3bf43ffa3001cadfe5d5faef2774522d0.tar.bz2 qemu-33df7bf3bf43ffa3001cadfe5d5faef2774522d0.zip |
vnc: generalize "VNC server running on ..." message
The message is useful whenever the user specifies "-vnc to=XX".
Move it to ui/vnc.c.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/console.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 52a5f65673..7c1fdbad6f 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -460,7 +460,6 @@ void vnc_display_add_client(const char *id, int csock, bool skipauth); #ifdef CONFIG_VNC int vnc_display_password(const char *id, const char *password); int vnc_display_pw_expire(const char *id, time_t expires); -char *vnc_display_local_addr(const char *id); QemuOpts *vnc_parse(const char *str, Error **errp); int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp); #else @@ -482,12 +481,6 @@ static inline int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp) error_setg(errp, "VNC support is disabled"); return -1; } -static inline char *vnc_display_local_addr(const char *id) -{ - /* This must never be called if CONFIG_VNC is disabled */ - error_report("VNC support is disabled"); - abort(); -} #endif /* curses.c */ |