Revert 1108: not all nc versions have -q option (including Fedora).

This commit is contained in:
Cole Robinson 2009-04-23 11:29:41 -04:00
parent ea17df3c59
commit d05e004240

View File

@ -1227,7 +1227,7 @@ class vmmDetails(gobject.GObject):
argv = ["ssh", "ssh", "-p", sshport]
if username:
argv += ['-l', username]
argv += [ server, "nc", "-q", "0", vncaddr, str(vncport) ]
argv += [ server, "nc", vncaddr, str(vncport) ]
os.execlp(*argv)
os._exit(1)
else: