From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16346 invoked by alias); 9 Mar 2004 08:11:03 -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 16334 invoked by uid 9341); 9 Mar 2004 08:11:02 -0000 Date: Tue, 09 Mar 2004 08:11:00 -0000 Message-ID: <20040309081101.16332.qmail@sources.redhat.com> From: asl@sources.redhat.com To: ecos-cvs@sources.redhat.com Subject: ecos/packages/fs/ram/current ChangeLog src/ramfs.c X-SW-Source: 2004/txt/msg00114.txt.bz2 List-Id: CVSROOT: /cvs/ecos Module name: ecos Changes by: asl@sourceware.org 2004-03-09 08:11:01 Modified files: packages/fs/ram/current: ChangeLog packages/fs/ram/current/src: ramfs.c Log message: * 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///)).