diff options
-rw-r--r-- | ext/pdo_dblib/pdo_dblib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/pdo_dblib/pdo_dblib.c b/ext/pdo_dblib/pdo_dblib.c index 46bd927a49..babda78587 100644 --- a/ext/pdo_dblib/pdo_dblib.c +++ b/ext/pdo_dblib/pdo_dblib.c @@ -79,8 +79,12 @@ zend_module_entry pdo_dblib_module_entry = { }; #if defined(COMPILE_DL_PDO_DBLIB) || defined(COMPILE_DL_PDO_MSSQL) +#if PDO_DBLIB_IS_MSSQL +ZEND_GET_MODULE(pdo_mssql) +#else ZEND_GET_MODULE(pdo_dblib) #endif +#endif int error_handler(DBPROCESS *dbproc, int severity, int dberr, int oserr, char *dberrstr, char *oserrstr) |