From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/4292 Path: news.gmane.org!not-for-mail From: orc Newsgroups: gmane.linux.lib.musl.general Subject: fnmatch and FNM_CASEFOLD Date: Fri, 29 Nov 2013 17:59:12 +0800 Message-ID: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1385719168 12909 80.91.229.3 (29 Nov 2013 09:59:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 29 Nov 2013 09:59:28 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-4296-gllmg-musl=m.gmane.org@lists.openwall.com Fri Nov 29 10:59:34 2013 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1VmKrD-0006CY-CJ for gllmg-musl@plane.gmane.org; Fri, 29 Nov 2013 10:59:31 +0100 Original-Received: (qmail 11416 invoked by uid 550); 29 Nov 2013 09:59:29 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 11406 invoked from network); 29 Nov 2013 09:59:29 -0000 User-Agent: K-9 Mail for Android Xref: news.gmane.org gmane.linux.lib.musl.general:4292 Archived-At: Hi list, This one really terrorized me well. Musl defines FNM_CASEFOLD in fnmatch.h but really does nothing when this flag is passed to function. This breaks busybox find -iname I believe, instead of file list matching "Test" among with "test" i get only those which contain "test" in their names with -iname "test". Missed lot of files because of it. Wishing this fixed or such define being removed.