summaryrefslogtreecommitdiff
path: root/ext/dav
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dav')
-rw-r--r--ext/dav/dav.c4
-rw-r--r--ext/dav/php_dav.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/dav/dav.c b/ext/dav/dav.c
index 0f8cd56a7a..ca57c6ecb2 100644
--- a/ext/dav/dav.c
+++ b/ext/dav/dav.c
@@ -70,7 +70,7 @@ phpdav_module php3_dav_module;
/* {{{ dynamically loadable module stuff */
# if COMPILE_DL
-DLEXPORT php3_module_entry *get_module() { return &phpdav_module_entry; };
+DLEXPORT zend_module_entry *get_module() { return &phpdav_module_entry; };
# endif /* COMPILE_DL */
/* }}} */
@@ -90,7 +90,7 @@ function_entry phpdav_functions[] = {
{NULL, NULL, NULL}
};
-php3_module_entry phpdav_module_entry = {
+zend_module_entry phpdav_module_entry = {
"DAV", /* extension name */
phpdav_functions, /* extension function list */
php3_minit_phpdav, /* extension-wide startup function */
diff --git a/ext/dav/php_dav.h b/ext/dav/php_dav.h
index b1ab062de1..3b0fbed2fb 100644
--- a/ext/dav/php_dav.h
+++ b/ext/dav/php_dav.h
@@ -40,7 +40,7 @@ typedef struct {
char *mkcol_create_handler;
} phpdav_module;
-extern php3_module_entry phpdav_module_entry;
+extern zend_module_entry phpdav_module_entry;
# define phpdav_module_ptr &phpdav_module_entry
int phpdav_mkcol_test_handler(request_rec *);