Index: neither/darkwar/hash.c
diff -u neither/darkwar/hash.c:1.14 neither/darkwar/hash.c:1.15
--- neither/darkwar/hash.c:1.14	Sat Apr 17 09:08:33 2004
+++ neither/darkwar/hash.c	Sat Apr 17 22:52:06 2004
@@ -23,7 +23,7 @@
 
 */
 static const char rcsid[] =
-    "$Id: hash.c,v 1.14 2004/04/17 13:08:33 black Exp $";
+    "$Id: hash.c,v 1.15 2004/04/18 02:52:06 eviltypeguy Exp $";
 
 #include "dwconfig.h"
 
@@ -183,7 +183,7 @@
 				continue;
 			}
 			for( node = list ;  ; node = node->next )
-				if( stricmp( node->data->name, data->name ) > 0 )
+				if( strcasecmp( node->data->name, data->name ) > 0 )
 					break;
 			if( node->prev )
 				node->prev->next = current;