From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16621 invoked by alias); 9 Mar 2004 08:11:27 -0000 Mailing-List: contact ecos-cvs-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Post: List-Help: , Sender: ecos-cvs-owner@sources.redhat.com List-Subscribe: Received: (qmail 16608 invoked by uid 9341); 9 Mar 2004 08:11:27 -0000 Date: Tue, 09 Mar 2004 08:11:00 -0000 Message-ID: <20040309081127.16607.qmail@sources.redhat.com> From: asl@sources.redhat.com To: ecos-cvs@sources.redhat.com Subject: ecos/packages/fs/rom/current ChangeLog src/romfs.c X-SW-Source: 2004/txt/msg00115.txt.bz2 List-Id: CVSROOT: /cvs/ecos Module name: ecos Changes by: asl@sourceware.org 2004-03-09 08:11:27 Modified files: packages/fs/rom/current: ChangeLog packages/fs/rom/current/src: romfs.c Log message: * 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///)).