]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
reverted previous patch applied by mistake
[wxWidgets.git] / src / common / ftp.cpp
index 83f419d5462d81d73abcec7c31979ed786b5f74f..5edc4b2e8bc775ec19be6c3b8d5407bc60baa29f 100644 (file)
@@ -596,10 +596,10 @@ wxSocketClient *wxFTP::GetPort()
     wxSscanf(straddr, wxT("%d,%d,%d,%d,%d,%d"),
              &a[2],&a[3],&a[4],&a[5],&a[0],&a[1]);
 
-    wxUint32 hostaddr = (wxUint16)a[5] << 24 |
-                        (wxUint16)a[4] << 16 |
-                        (wxUint16)a[3] << 8 |
-                        a[2];
+    wxUint32 hostaddr = (wxUint16)a[2] << 24 |
+                        (wxUint16)a[3] << 16 |
+                        (wxUint16)a[4] << 8 |
+                        a[5];
     wxUint16 port = (wxUint16)a[0] << 8 | a[1];
 
     wxIPV4address addr;