Mercurial > ecos
diff packages/fs/jffs2/current/ChangeLog @ 1533:89eafd905d8d
* src/fs-ecos.c :
(jffs2_find) Policy to skip path separator is no longer
"if '/' then skip" but "while '/' then skip" allowing
multi '/' separators (i.e : /tmp////foo).
(find_entry) Policy to detect end of path is no longer
"if '\0' then end_of_path"
but "while '/' skip it and then if '\0' then end_of_path"
allowing path terminated with any number of '/'
(i.e : chdir(/tmp///)).
| author | asl |
|---|---|
| date | Tue, 09 Mar 2004 08:11:27 +0000 |
| parents | 4963fc37647a |
| children | 748c09136e09 |
line wrap: on
line diff
--- a/packages/fs/jffs2/current/ChangeLog +++ b/packages/fs/jffs2/current/ChangeLog @@ -1,3 +1,15 @@ +2004-02-20 Vincent Catros <Vincent.Catros@elios-informatique.fr> + + * src/fs-ecos.c : + (jffs2_find) Policy to skip path separator is no longer + "if '/' then skip" but "while '/' then skip" allowing + multi '/' separators (i.e : /tmp////foo). + (find_entry) Policy to detect end of path is no longer + "if '\0' then end_of_path" + but "while '/' skip it and then if '\0' then end_of_path" + allowing path terminated with any number of '/' + (i.e : chdir(/tmp///)). + 2004-02-17 David Woodhouse <dwmw2@redhat.com> * src/fs-ecos.c:
