[Bugfix] Pass correct address length to connect(2) call (alan dot coopersmith at sun dot com)

Reference: http://www.mail-archive.com/tigervnc-devel@lists.sourceforge.net/msg00449.html


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3917 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/network/TcpSocket.cxx b/common/network/TcpSocket.cxx
index c95dfcf..7fd9c6a 100644
--- a/common/network/TcpSocket.cxx
+++ b/common/network/TcpSocket.cxx
@@ -188,7 +188,7 @@
     }
 
   /* Attempt to connect to the remote host */
-    while ((result = connect(sock, &sa.u.sa, sizeof(sa))) == -1) {
+    while ((result = connect(sock, &sa.u.sa, salen)) == -1) {
       err = errorNumber;
 #ifndef WIN32
       if (err == EINTR)