make tags case sensisitve (lower case)
authorroot <devnull@localhost>
Wed, 16 Apr 1997 15:50:37 +0000 (15:50 +0000)
committerroot <devnull@localhost>
Wed, 16 Apr 1997 15:50:37 +0000 (15:50 +0000)
CVS patchset: 1546
CVS date: 1997/04/16 15:50:37

build/spec.c

index daad0e3..6793aed 100644 (file)
@@ -892,7 +892,7 @@ static int check_part(char *line, char **s)
 {
     struct part_rec *p = part_list;
 
-    while (p->s && strncasecmp(line, p->s, p->len)) {
+    while (p->s && strncmp(line, p->s, p->len)) {
         p++;
     }
     if (!p) return 0;