From issues-return-6681-apmail-commons-issues-archive=commons.apache.org@commons.apache.org Thu Feb 05 00:30:23 2009 Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 95999 invoked from network); 5 Feb 2009 00:30:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2009 00:30:23 -0000 Received: (qmail 38775 invoked by uid 500); 5 Feb 2009 00:30:22 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 38720 invoked by uid 500); 5 Feb 2009 00:30:22 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 38708 invoked by uid 99); 5 Feb 2009 00:30:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 16:30:22 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 00:30:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9C120234C48C for ; Wed, 4 Feb 2009 16:29:59 -0800 (PST) Message-ID: <52171155.1233793799638.JavaMail.jira@brutus> Date: Wed, 4 Feb 2009 16:29:59 -0800 (PST) From: "Rory Winston (JIRA)" To: issues@commons.apache.org Subject: [jira] Closed: (NET-248) half-baked commands list in FTPCommand In-Reply-To: <1787881822.1230745064292.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/NET-248?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rory Winston closed NET-248. ---------------------------- Resolution: Fixed Added. > half-baked commands list in FTPCommand > -------------------------------------- > > Key: NET-248 > URL: https://issues.apache.org/jira/browse/NET-248 > Project: Commons Net > Issue Type: Bug > Affects Versions: 2.0 > Environment: all > Reporter: Luffy Jiang > Priority: Critical > Attachments: FTPCommand.java > > Original Estimate: 0.08h > Remaining Estimate: 0.08h > > in version 2.0 > the "MDTM" has been add into supporting. > /** @since 2.0 */ > public static final int MDTM = 33; > but the commands list "static final String[] _commands = {" is halt-baked. > should be: > static final String[] _commands = { > "USER", "PASS", "ACCT", "CWD", "CDUP", "SMNT", "REIN", "QUIT", "PORT", > "PASV", "TYPE", "STRU", "MODE", "RETR", "STOR", "STOU", "APPE", "ALLO", > "REST", "RNFR", "RNTO", "ABOR", "DELE", "RMD", "MKD", "PWD", "LIST", > "NLST", "SITE", "SYST", "STAT", "HELP", "NOOP","MDTM", > }; > but > static final String[] _commands = { > "USER", "PASS", "ACCT", "CWD", "CDUP", "SMNT", "REIN", "QUIT", "PORT", > "PASV", "TYPE", "STRU", "MODE", "RETR", "STOR", "STOU", "APPE", "ALLO", > "REST", "RNFR", "RNTO", "ABOR", "DELE", "RMD", "MKD", "PWD", "LIST", > "NLST", "SITE", "SYST", "STAT", "HELP", "NOOP", > }; > right now,at released version. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.