From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/13365 Path: news.gmane.org!.POSTED!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: Open conformance issues & plans Date: Mon, 15 Oct 2018 10:32:48 -0400 Message-ID: <20181015143248.GK5150@brightrain.aerifal.cx> References: <20180823204124.GM1878@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1539613858 27398 195.159.176.226 (15 Oct 2018 14:30:58 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2018 14:30:58 +0000 (UTC) User-Agent: Mutt/1.5.21 (2010-09-15) To: musl@lists.openwall.com Original-X-From: musl-return-13381-gllmg-musl=m.gmane.org@lists.openwall.com Mon Oct 15 16:30:54 2018 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1gC3tV-00070i-G7 for gllmg-musl@m.gmane.org; Mon, 15 Oct 2018 16:30:53 +0200 Original-Received: (qmail 14175 invoked by uid 550); 15 Oct 2018 14:33:01 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 14157 invoked from network); 15 Oct 2018 14:33:01 -0000 Content-Disposition: inline In-Reply-To: <20180823204124.GM1878@brightrain.aerifal.cx> Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:13365 Archived-At: On Thu, Aug 23, 2018 at 04:41:24PM -0400, Rich Felker wrote: > 3. fnmatch and glob corner cases > > fnmatch spuriously succeeds when there's an escape character (\) at > the end of the pattern. This probably should be an error. This is explicitly required to be either a non-match or an error. I'll fix it. > glob wrongly handles unreadable-but-searchable directory components. I > don't yet understand what it does vs what it's supposed to do. > Reported as: > > glob("unreadable_but_searchable_dir/a", GLOB_ERR, errfunc, pglob) > returns GLOB_NOMATCH and calls errfunc (it should do neither of > these things) [Kernel?] This is now fixed in d44b07fc904f6a0d31ba025f3e9f423c1e47547e. Rich