Mercurial > flash_v2
diff packages/fs/ram/current/ChangeLog @ 1532:d1185a575d2f
* src/ramfs.c :
(ramfs_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:00 +0000 |
| parents | d431485fc764 |
| children | 92d4feb4957e |
line wrap: on
line diff
--- a/packages/fs/ram/current/ChangeLog +++ b/packages/fs/ram/current/ChangeLog @@ -1,3 +1,15 @@ +2004-02-20 Vincent Catros <Vincent.Catros@elios-informatique.fr> + + * src/ramfs.c : + (ramfs_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-25 Jonathan Larmour <jifl@eCosCentric.com> * src/ramfs.c (findbuffer_node): If pos larger than even INDIRECT2_MAX
