Index: xen-3.3.1-testing/tools/python/xen/xm/create.py =================================================================== --- xen-3.3.1-testing.orig/tools/python/xen/xm/create.py +++ xen-3.3.1-testing/tools/python/xen/xm/create.py @@ -1129,8 +1129,7 @@ def spawn_vnc(display): returns the port that the vncviewer is listening on and sets the global vncpid. On failure, returns 0. Note that vncviewer is daemonized. """ - vncargs = (["vncviewer", "-log", "*:stdout:0", - "-listen", "%d" % (VNC_BASE_PORT + display) ]) + vncargs = (["vncviewer", "-listen", "%d" % (display) ]) global vncpid vncpid = utils.daemonize("vncviewer", vncargs) if vncpid == 0: