From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 14221 invoked from network); 24 Jan 2022 22:14:09 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 24 Jan 2022 22:14:09 -0000 Received: (qmail 5507 invoked by uid 550); 24 Jan 2022 22:14:07 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 5455 invoked from network); 24 Jan 2022 22:14:06 -0000 Date: Mon, 24 Jan 2022 17:13:54 -0500 From: Rich Felker To: musl@lists.openwall.com Message-ID: <20220124221353.GH7074@brightrain.aerifal.cx> References: <20220123155955.16484-1-ismael@iodev.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220123155955.16484-1-ismael@iodev.co.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [musl] [PATCH v3 0/2] nftw: Implement FTW_CHDIR and FTW_ACTIONRETVAL On Sun, Jan 23, 2022 at 04:59:53PM +0100, Ismael Luceno wrote: > FTW_CHDIR is specified by POSIX. While the spec doesn't clarify, nftw > restores the starting directory in conformance with other implementations. > > FTW_ACTIONRETVAL is a GNU extension added by glibc 2.3.3. > > Changes since v2: > > - Fixed error handling on FTW_CHDIR > > Changes since v1: > > - Fixed handling of FTW_STOP when FTW_DEPTH isn't set. > > Ismael Luceno (2): > nftw: implement FTW_CHDIR > nftw: implement FTW_ACTIONRETVAL (GNU extension) > > include/ftw.h | 7 +++++++ > src/misc/nftw.c | 55 ++++++++++++++++++++++++++++++++++++++++--------- > 2 files changed, 52 insertions(+), 10 deletions(-) > > -- > 2.33.0 For future reference, a single email with a patch series as attachments is preferable over the LKML thread wackiness and makes it a lot easier to review and submit new versions as replies in the existing thread rather than starting a new thread each time. Rich