summaryrefslogtreecommitdiff
path: root/ext/odbc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/odbc')
-rw-r--r--ext/odbc/php_odbc.c6
-rw-r--r--ext/odbc/velocis.c2
2 files changed, 6 insertions, 2 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),
diff --git a/ext/odbc/velocis.c b/ext/odbc/velocis.c
index 5bc7a1b528..faf53bc624 100644
--- a/ext/odbc/velocis.c
+++ b/ext/odbc/velocis.c
@@ -60,7 +60,7 @@ function_entry velocis_functions[] = {
};
zend_module_entry velocis_module_entry = {
- "Velocis", velocis_functions, PHP_MINIT(velocis), PHP_MSHUTDOWN(velocis),
+ "velocis", velocis_functions, PHP_MINIT(velocis), PHP_MSHUTDOWN(velocis),
PHP_RINIT(velocis), NULL, PHP_MINFO(velocis), STANDARD_MODULE_PROPERTIES
};