On 09/13/2011 11:05 AM, Jeff King wrote: > On Tue, Sep 13, 2011 at 10:15:15AM -0500, Brandon Casey wrote: > >> ...and I see there is already an fnmatch_icase() in dir.c which adds >> FNM_CASEFOLD when the global var ignore_case is set. So, maybe it's as >> easy as: >> [...] >> - return (fnmatch(pattern, basename, 0) == 0); >> + return (fnmatch_icase(pattern, basename, 0) == 0); > > OK, wow. That's exactly the level of easy I was hoping for. Do you want > to roll that up into a patch with some tests? I haven't even tested that it runs. :) No, I was hoping someone who was more interested would finish it, and maybe even test on an affected system. -Brandon -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html