Use caseinsensitive sort

This commit is contained in:
Marcus Boerger 2004-05-02 13:23:30 +00:00
parent 4d5ce8cd08
commit 6a4e1fff78

View File

@ -373,7 +373,7 @@ static int module_name_cmp(const void *a, const void *b TSRMLS_DC)
Bucket *f = *((Bucket **) a);
Bucket *s = *((Bucket **) b);
return strcmp(((zend_module_entry *)f->pData)->name,
return strcasecmp(((zend_module_entry *)f->pData)->name,
((zend_module_entry *)s->pData)->name);
}
/* }}} */