Comment 1 for bug 264631

Revision history for this message
Eric Vernichon (eric-vernichon) wrote :

Hello,

for correct this problem I have change /usr/share/gtkvncviewer.py like this

- self.vnc.open_host(server, port)
+serverport=server.split(':')

+server=serverport[0]
+try:
+ port = serverport[1]
+except:
+ port = "5900"
+self.vnc.open_host(server, port)

and I can use address:port for the server name

Cordialy