diff options
author | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 |
commit | d02fe90b009d3145b0b9d24510c6869c68d2b99b (patch) | |
tree | e7ad756d7b5a2ed3a082a63dc97e3dd95a5cd44c /ext/hyperwave | |
parent | 31c9ad183133a1d24a686b325414513a4373a680 (diff) | |
download | php-git-d02fe90b009d3145b0b9d24510c6869c68d2b99b.tar.gz |
Change extension names in all extensions' zend_module_entry to their
directory name.
Diffstat (limited to 'ext/hyperwave')
-rw-r--r-- | ext/hyperwave/hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index c08d1fd607..af03df7ab0 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -116,7 +116,7 @@ function_entry hw_functions[] = { }; zend_module_entry hw_module_entry = { - "HyperWave", hw_functions, PHP_MINIT(hw), PHP_MSHUTDOWN(hw), NULL, NULL, PHP_MINFO(hw), 0, 0, 0, NULL + "hyperwave", hw_functions, PHP_MINIT(hw), PHP_MSHUTDOWN(hw), NULL, NULL, PHP_MINFO(hw), 0, 0, 0, NULL }; #ifdef ZTS |