--- glob.c.orig	Sat Oct 28 01:41:43 2000
+++ glob.c	Fri Nov  3 09:32:31 2000
@@ -72,6 +72,7 @@
 #include <sys/param.h>
 #include <sys/stat.h>
 
+#include <ctype.h>
 #include <dirent.h>
 #include <errno.h>
 #include <glob.h>
@@ -738,7 +739,7 @@
 				return(0);
 			break;
 		default:
-			if (*name++ != c)
+			if (tolower(*name++) != tolower(c))
 				return(0);
 			break;
 		}

