I would've submitted a patch, but I'm new to this. The problem is in LFTPConnection::SendPASV(). When it extracts the port from the PASV response it stuffs it into a PPC (big endian) specific format. I had to make the following change to support i386.
p = (char*)(outPort);
#ifdef __BIG_ENDIAN__
// ppc version
currTok = PP_CSTD::strtok(nil, "(), ."); //a1...Host port
p[0] = (char...
2006-12-01 22:47:28 UTC in PowerPlant Frameworks