Return-Path: Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Delivered-To: mailing list dev@ant.apache.org Received: (qmail 67606 invoked from network); 2 Apr 2003 08:14:10 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 2 Apr 2003 08:14:10 -0000 Received: (qmail 6038 invoked by uid 50); 2 Apr 2003 08:16:10 -0000 Date: 2 Apr 2003 08:16:09 -0000 Message-ID: <20030402081609.6037.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: dev@ant.apache.org Cc: Subject: DO NOT REPLY [Bug 11044] - FTP chmod from Windows-UNIX: wrong separator X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11044 FTP chmod from Windows-UNIX: wrong separator ------- Additional Comments From aloew@t-online.de 2003-04-02 08:16 ------- Another problem about separators within class FTP: Using a Windows client and a Solaris 8 FTP server, ftp.changeWorkingDirectory(parent) will fail at line 632 within method protected void createParents(FTPClient ftp, String filename) because the local file separator has not been replaced. Fix: "parent = resolveFile(parent);" has to be added at line 632. if (parent != null) { + parent = resolveFile(parent); if (!ftp.changeWorkingDirectory(parent)) {