summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/pdo_pgsql.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2011-05-31 08:59:32 +0000
committerIlia Alshanetsky <iliaa@php.net>2011-05-31 08:59:32 +0000
commit4bc1fb265b7816a5ff0a44098ed9f2397296666b (patch)
tree592b4d70f5c0bdffa3780f05d6b60c7cea042bf5 /ext/pdo_pgsql/pdo_pgsql.c
parentd0ba3e188155188944090e0659716f75ab6dda1d (diff)
downloadphp-git-4bc1fb265b7816a5ff0a44098ed9f2397296666b.tar.gz
Removed unnecessary rinit/rshutdown
Diffstat (limited to 'ext/pdo_pgsql/pdo_pgsql.c')
-rw-r--r--ext/pdo_pgsql/pdo_pgsql.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/ext/pdo_pgsql/pdo_pgsql.c b/ext/pdo_pgsql/pdo_pgsql.c
index bdc6c31e35..805d752afc 100644
--- a/ext/pdo_pgsql/pdo_pgsql.c
+++ b/ext/pdo_pgsql/pdo_pgsql.c
@@ -67,8 +67,8 @@ zend_module_entry pdo_pgsql_module_entry = {
pdo_pgsql_functions,
PHP_MINIT(pdo_pgsql),
PHP_MSHUTDOWN(pdo_pgsql),
- PHP_RINIT(pdo_pgsql),
- PHP_RSHUTDOWN(pdo_pgsql),
+ NULL,
+ NULL,
PHP_MINFO(pdo_pgsql),
"1.0.2",
STANDARD_MODULE_PROPERTIES
@@ -106,24 +106,6 @@ PHP_MSHUTDOWN_FUNCTION(pdo_pgsql)
}
/* }}} */
-/* {{{ PHP_RINIT_FUNCTION
- */
-PHP_RINIT_FUNCTION(pdo_pgsql)
-{
- /* php_pdo_register_driver(&pdo_pgsql_driver); */
- return SUCCESS;
-}
-/* }}} */
-
-/* {{{ PHP_MSHUTDOWN_FUNCTION
- */
-PHP_RSHUTDOWN_FUNCTION(pdo_pgsql)
-{
- /* php_pdo_unregister_driver(&pdo_pgsql_driver); */
- return SUCCESS;
-}
-/* }}} */
-
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(pdo_pgsql)