From d02fe90b009d3145b0b9d24510c6869c68d2b99b Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 6 Mar 2000 18:44:01 +0000 Subject: Change extension names in all extensions' zend_module_entry to their directory name. --- ext/odbc/php_odbc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ext/odbc/php_odbc.c') diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 9dfd749870..366b7309c2 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -26,12 +26,16 @@ #include "php.h" #include "php_globals.h" + #include "ext/standard/info.h" + #include "ext/standard/php_string.h" #include "ext/standard/php_standard.h" + #include "php_odbc.h" #include "php_globals.h" + #if HAVE_UODBC #include @@ -112,7 +116,7 @@ function_entry odbc_functions[] = { }; zend_module_entry odbc_module_entry = { - "ODBC", + "odbc", odbc_functions, PHP_MINIT(odbc), PHP_MSHUTDOWN(odbc), -- cgit v1.2.1