summaryrefslogtreecommitdiff
path: root/mod_php3.c
diff options
context:
space:
mode:
Diffstat (limited to 'mod_php3.c')
-rw-r--r--mod_php3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod_php3.c b/mod_php3.c
index 07641c7d37..7adfa2c8a2 100644
--- a/mod_php3.c
+++ b/mod_php3.c
@@ -88,7 +88,7 @@ int saved_umask;
php_apache_info_struct php_apache_info; /* active config */
int apache_php3_module_main(request_rec * r, int fd, int display_source_mode);
-int php_module_startup(sapi_functions_struct *sf);
+int php_module_startup(sapi_module_struct *sf);
void php_module_shutdown();
void php_module_shutdown_for_exec();
@@ -112,7 +112,7 @@ static int zend_apache_ub_write(const char *str, uint str_length)
}
-sapi_functions_struct sapi_functions = {
+sapi_module_struct sapi_module = {
zend_apache_ub_write
};
@@ -268,7 +268,7 @@ int php3_xbithack_handler(request_rec * r)
void php3_init_handler(server_rec *s, pool *p)
{
register_cleanup(p, NULL, php_module_shutdown, php_module_shutdown_for_exec);
- php_module_startup(&sapi_functions);
+ php_module_startup(&sapi_module);
#if MODULE_MAGIC_NUMBER >= 19980527
ap_add_version_component("PHP/" PHP_VERSION);
#endif