Commit 4a55bfdfcf051f45619d422285be4b8c30ff20ae

Authored by aliguori
1 parent d4b55be5

Exclude unix: from vnc call to unix_listen() (Ryan Harper)

When using an existing unix socket like:

 -vnc unix:/tmp/file1Y2nY2

qemu fails to bind a unix socket because the vnc call to unix_listen includes
the unix: prefix and stores that in the unix.sun_path.  The fix is to not pass
in unix: for the filename (same way qemu-char.c does it).

Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5856 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -2544,7 +2544,7 @@ int vnc_display_open(DisplayState *ds, const char *display)
2544 2544 dpy = qemu_malloc(256);
2545 2545 if (strncmp(display, "unix:", 5) == 0) {
2546 2546 strcpy(dpy, "unix:");
2547   - vs->lsock = unix_listen(display, dpy+5, 256-5);
  2547 + vs->lsock = unix_listen(display+5, dpy+5, 256-5);
2548 2548 } else {
2549 2549 vs->lsock = inet_listen(display, dpy, 256, SOCK_STREAM, 5900);
2550 2550 }
... ...