Index: scheduler/type.c =================================================================== --- scheduler/type.c (revision 7178) +++ scheduler/type.c (working copy) @@ -638,8 +638,8 @@ 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); }