diff options
author | SVN Migration <svn@php.net> | 2004-07-15 19:41:25 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2004-07-15 19:41:25 +0000 |
commit | 5c83dc9adee4691690822a05b290d7d9a9c04c31 (patch) | |
tree | 4c22c901829598dfe7fa599c41c0b2cb569f4afa /sapi/cli/php_cli.c | |
parent | 8091552925399dc7dbe4d5c47e1cc53f900bc670 (diff) | |
download | php-git-php-5.0.0RC4.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_5_0_0RC4'.php-5.0.0RC4
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 2af1cb7ce3..fbc6f8b01e 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -132,7 +132,7 @@ static int module_name_cmp(const void *a, const void *b TSRMLS_DC) Bucket *f = *((Bucket **) a); Bucket *s = *((Bucket **) b); - return strcasecmp(((zend_module_entry *)f->pData)->name, + return strcmp(((zend_module_entry *)f->pData)->name, ((zend_module_entry *)s->pData)->name); } |