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
The following directory entries are not parsed by the UnixFTPEntryParser:
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
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:
<.......>
+"(((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-])))\\+?\\s+"
<.......>
The problem is the pattern "\\s+", it should be "\\s*"
Chris M.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.