]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/type.c
Merge changes from CUPS 1.4svn-r7199.
[thirdparty/cups.git] / scheduler / type.c
index 06afd235201c2d17d5d09c939770ef0d50a4334f..30e98d12d5a4c10b59fe1f5f4b571ad300fa1806 100644 (file)
@@ -638,8 +638,8 @@ compare_types(mime_type_t *t0,              /* I - First type */
   int  i;                              /* Result of comparison */
 
 
-  if ((i = strcmp(t0->super, t1->super)) == 0)
-    i = strcmp(t0->type, t1->type);
+  if ((i = strcasecmp(t0->super, t1->super)) == 0)
+    i = strcasecmp(t0->type, t1->type);
 
   return (i);
 }