From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16939 invoked by alias); 9 Mar 2004 08:12:08 -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 16926 invoked by uid 9341); 9 Mar 2004 08:12:08 -0000 Date: Tue, 09 Mar 2004 08:12:00 -0000 Message-ID: <20040309081208.16925.qmail@sources.redhat.com> From: asl@sources.redhat.com To: ecos-cvs@sources.redhat.com Subject: ecos/packages/fs/jffs2/current ChangeLog src/f ... X-SW-Source: 2004/txt/msg00116.txt.bz2 List-Id: CVSROOT: /cvs/ecos Module name: ecos Changes by: asl@sourceware.org 2004-03-09 08:12:08 Modified files: packages/fs/jffs2/current: ChangeLog packages/fs/jffs2/current/src: fs-ecos.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///)).