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/pgsql/pgsql.c | |
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/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 7c9f741bf1..7deb024a7d 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -76,7 +76,7 @@ function_entry pgsql_functions[] = { }; zend_module_entry pgsql_module_entry = { - "PostgreSQL", pgsql_functions, PHP_MINIT(pgsql), PHP_MSHUTDOWN(pgsql), PHP_RINIT(pgsql), NULL, NULL, STANDARD_MODULE_PROPERTIES + "pgsql", pgsql_functions, PHP_MINIT(pgsql), PHP_MSHUTDOWN(pgsql), PHP_RINIT(pgsql), NULL, NULL, STANDARD_MODULE_PROPERTIES }; #if COMPILE_DL |