diff options
| author | TeLeMan <geleman@gmail.com> | 2011-07-25 16:29:14 +0800 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-29 09:33:56 -0500 |
| commit | c62f6d1d76aea587556c85b6b7b5c44167006264 (patch) | |
| tree | 75b847a9bde5c569fd973c6afe88cdb19841599b | |
| parent | 2645c6dcaf6ea2a51a3b6dfa407dd203004e4d11 (diff) | |
| download | focaccia-qemu-c62f6d1d76aea587556c85b6b7b5c44167006264.tar.gz focaccia-qemu-c62f6d1d76aea587556c85b6b7b5c44167006264.zip | |
monitor: fix build breakage with --disable-vnc
The breakage was introduced by the commit 13661089810d3e59931f3e80d7cb541b99af7071 Signed-off-by: TeLeMan <geleman@gmail.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | monitor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/monitor.c b/monitor.c index 718935b881..1b8ba2c1fa 100644 --- a/monitor.c +++ b/monitor.c @@ -1200,10 +1200,12 @@ static int add_graphics_client(Monitor *mon, const QDict *qdict, QObject **ret_d } qerror_report(QERR_ADD_CLIENT_FAILED); return -1; +#ifdef CONFIG_VNC } else if (strcmp(protocol, "vnc") == 0) { int fd = monitor_get_fd(mon, fdname); vnc_display_add_client(NULL, fd, skipauth); return 0; +#endif } else if ((s = qemu_chr_find(protocol)) != NULL) { int fd = monitor_get_fd(mon, fdname); if (qemu_chr_add_client(s, fd) < 0) { |