summaryrefslogtreecommitdiff
path: root/ext/odbc/php_odbc.c
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/odbc/php_odbc.c
parent31c9ad183133a1d24a686b325414513a4373a680 (diff)
downloadphp-git-d02fe90b009d3145b0b9d24510c6869c68d2b99b.tar.gz
Change extension names in all extensions' zend_module_entry to their
directory name.
Diffstat (limited to 'ext/odbc/php_odbc.c')
-rw-r--r--ext/odbc/php_odbc.c6
1 files changed, 5 insertions, 1 deletions
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 <fcntl.h>
@@ -112,7 +116,7 @@ function_entry odbc_functions[] = {
};
zend_module_entry odbc_module_entry = {
- "ODBC",
+ "odbc",
odbc_functions,
PHP_MINIT(odbc),
PHP_MSHUTDOWN(odbc),