summaryrefslogtreecommitdiff
path: root/ext/aspell
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2000-03-06 18:44:01 +0000
committerStig Bakken <ssb@php.net>2000-03-06 18:44:01 +0000
commitd02fe90b009d3145b0b9d24510c6869c68d2b99b (patch)
treee7ad756d7b5a2ed3a082a63dc97e3dd95a5cd44c /ext/aspell
parent31c9ad183133a1d24a686b325414513a4373a680 (diff)
downloadphp-git-d02fe90b009d3145b0b9d24510c6869c68d2b99b.tar.gz
Change extension names in all extensions' zend_module_entry to their
directory name.
Diffstat (limited to 'ext/aspell')
-rw-r--r--ext/aspell/aspell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c
index 0721628b4d..74d8a73df1 100644
--- a/ext/aspell/aspell.c
+++ b/ext/aspell/aspell.c
@@ -42,7 +42,7 @@ function_entry aspell_functions[] = {
static int le_aspell;
zend_module_entry aspell_module_entry = {
- "Aspell", aspell_functions, PHP_MINIT(aspell), NULL, NULL, NULL, PHP_MINFO(aspell), STANDARD_MODULE_PROPERTIES
+ "aspell", aspell_functions, PHP_MINIT(aspell), NULL, NULL, NULL, PHP_MINFO(aspell), STANDARD_MODULE_PROPERTIES
};