[ 
https://issues.apache.org/jira/browse/NET-259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rory Winston closed NET-259.
----------------------------

       Resolution: Fixed
    Fix Version/s: 2.1

Fixed. Thanks Chris.

> UnixFTPEntryParser regex does not match some directory entries
> --------------------------------------------------------------
>
>                 Key: NET-259
>                 URL: https://issues.apache.org/jira/browse/NET-259
>             Project: Commons Net
>          Issue Type: Bug
>    Affects Versions: 2.0
>         Environment: Solaris
>            Reporter: christophe monjarret
>             Fix For: 2.1
>
>
> The following directory entries are not parsed by the UnixFTPEntryParser:
> {code}
> drwxr-x---+1464 chrism   chrism     41472 Feb 25 13:17 20090225
> drwxr-x---+1465 chrism   chrism     41984 Feb 28 07:15 20090226
> drwxr-x---+1465 chrism   chrism     41984 Feb 28 07:15 20090227
> {code}
> The root cause is that the REGEX used to parse these Strings expects there is 
> at least one space between the first '+' and the following decimal characters.
> The REGEX format is:
> {noformat}
> <.......>
> (((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-])))\\+?\\s+
> <.......>
> The problem is the pattern \\s+, it should be \\s*
> {noformat}
> Chris M.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to