summaryrefslogtreecommitdiffstats
path: root/ui/vnc.c
diff options
context:
space:
mode:
authorOrit Wasserman <owasserm@redhat.com>2012-09-24 13:11:08 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2012-09-25 19:05:55 -0500
commit5db5f44cb4b7f24b9e0efdefc9015e36b7c34881 (patch)
treeaa9d4b99920842446b7d88a28eedf17874533f60 /ui/vnc.c
parent05bc1d8a4b2f77df8cc9880a552047e30c16f1f8 (diff)
downloadhqemu-5db5f44cb4b7f24b9e0efdefc9015e36b7c34881.zip
hqemu-5db5f44cb4b7f24b9e0efdefc9015e36b7c34881.tar.gz
Separate inet_connect into inet_connect (blocking) and inet_nonblocking_connect
No need to add non blocking parameters to the blocking inet_connect add block parameter for inet_connect_opts instead of using QemuOpt "block". Signed-off-by: Orit Wasserman <owasserm@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui/vnc.c')
-rw-r--r--ui/vnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/vnc.c b/ui/vnc.c
index 385e345..01b2daf 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -3061,7 +3061,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
if (strncmp(display, "unix:", 5) == 0)
vs->lsock = unix_connect(display+5);
else
- vs->lsock = inet_connect(display, true, NULL, NULL);
+ vs->lsock = inet_connect(display, NULL);
if (-1 == vs->lsock) {
g_free(vs->display);
vs->display = NULL;
OpenPOWER on IntegriCloud