The components in the profile should be matched case*in*sensitive, always.
np->n_context = ctx;
/*
- ** Now scan the list of `procs' and link in the
- ** field value to the global variable.
+ ** Now scan the list of `procs' and link in
+ ** the field value to the global variable.
*/
for (ps = procs; ps->procname; ps++)
- if (strcmp(np->n_name, ps->procname) == 0) {
+ if (mh_strcasecmp(np->n_name,
+ ps->procname) == 0) {
*ps->procnaddr = np->n_field;
break;
}