﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
208	grep --include and --exclude options are not case-insensitve	Steven Levine		"
grep -r --include=*.c foo will not check files named *.C because the fnmatch() call is case-sensitive

To change this behavior, modify:

lib\exclude.c:384
  bool matched = ((*matcher) (pattern, f, options) == 0);

to

  bool matched = ((*matcher) (pattern, f, options | FNM_CASEFOLD) == 0);

"	defect	closed	minor		*none		medium	fixed		
