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.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, 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 11350 invoked from network); 8 Apr 2021 16:03:04 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 8 Apr 2021 16:03:04 -0000 Received: (qmail 21663 invoked by uid 550); 8 Apr 2021 16:02:57 -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 21633 invoked from network); 8 Apr 2021 16:02:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=opensmtpd; bh=gNBTqMKvj+ 9PcsGrElioFVhrlp67V3F5shGvc7/UzAo=; h=from:subject:to:date; d=soeren-tempel.net; b=SuWVxWq7UbxWHz6QBfENt6RNHSuxrS1bZ62UeR/85RtNgTo lXKSc84XLnQqH+lLKEMYasBslXCNYz5fTiyNCteKQ3WchHZSF/SXHB9EKL248zw1zDqIHu YaqOyB+R28y8sWVSNUE0yAtovom/jimu7zOSSEPy8PK0qYwC/iKaZY= Date: Thu, 08 Apr 2021 18:02:39 +0200 To: musl@lists.openwall.com From: =?UTF-8?Q?S=C3=B6ren?= Tempel Message-Id: <2C8S0G5PN0Q4R.21N6CCO9FEK55@8pit.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [musl] nftw: FTW_CHDIR defined but not implemented Hi, The musl implementation of nftw does presently not implement the FTW_CHDIR flag, which is mandated by POSIX. Unfortunately, musl does define this macro in the ftw.h header file which makes software using this flag compile but causes unexpected failures at run-time. Implementing this feature would likely require a larger overhaul of the current nftw implementation. Maybe it makes sense to remove the FTW_CHDIR macro from ftw.h as a short-term workaround in the meantime to prevent cumbersome run-time failures? Greetings, S=C3=B6ren