helly Sun May 2 09:23:30 2004 EDT Modified files: /php-src/ext/standard info.c Log: Use caseinsensitive sort http://cvs.php.net/diff.php/php-src/ext/standard/info.c?r1=1.244&r2=1.245&ty=u Index: php-src/ext/standard/info.c diff -u php-src/ext/standard/info.c:1.244 php-src/ext/standard/info.c:1.245 --- php-src/ext/standard/info.c:1.244 Fri Apr 23 09:28:25 2004 +++ php-src/ext/standard/info.c Sun May 2 09:23:30 2004 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: info.c,v 1.244 2004/04/23 13:28:25 derick Exp $ */ +/* $Id: info.c,v 1.245 2004/05/02 13:23:30 helly Exp $ */ #include "php.h" #include "php_ini.h" @@ -373,7 +373,7 @@ 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); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php