diff options
author | foobar <sniper@php.net> | 2001-06-24 22:18:51 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-06-24 22:18:51 +0000 |
commit | 2c95a1d690e4be16d20ca2147c5bf0421d04fec0 (patch) | |
tree | e5d6f399d2b0144a10f60090a32cfd2b116682d4 | |
parent | c72bac335d88f15e04d4ca339ca2880e708597fa (diff) | |
download | php-git-2c95a1d690e4be16d20ca2147c5bf0421d04fec0.tar.gz |
The extension name seems to be usually totally lower-cased.
-rw-r--r-- | ext/calendar/calendar.c | 2 | ||||
-rw-r--r-- | ext/session/mod_mm.c | 2 | ||||
-rw-r--r-- | ext/yaz/php_yaz.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c index 2ac1dc1997..12ae1aae67 100644 --- a/ext/calendar/calendar.c +++ b/ext/calendar/calendar.c @@ -48,7 +48,7 @@ function_entry calendar_functions[] = { zend_module_entry calendar_module_entry = { - "Calendar", + "calendar", calendar_functions, NULL, /*PHP_MINIT(calendar),*/ NULL, diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index b6f4b52465..f580d785ad 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -345,7 +345,7 @@ PS_GC_FUNC(mm) } zend_module_entry php_session_mm_module = { - "Session MM", + "session mm", NULL, PHP_MINIT(ps_mm), PHP_MSHUTDOWN(ps_mm), NULL, NULL, diff --git a/ext/yaz/php_yaz.c b/ext/yaz/php_yaz.c index 8ce2e1fa5c..7d4a704be8 100644 --- a/ext/yaz/php_yaz.c +++ b/ext/yaz/php_yaz.c @@ -2468,7 +2468,7 @@ PHP_RINIT_FUNCTION(yaz) } zend_module_entry yaz_module_entry = { - "YAZ", + "yaz", yaz_functions, PHP_MINIT(yaz), PHP_MSHUTDOWN(yaz), |