diff options
author | Andi Gutmans <andi@php.net> | 1999-05-02 18:07:41 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-05-02 18:07:41 +0000 |
commit | 5dbe9246609e59439ca0340aed5b2eaac1bed7d8 (patch) | |
tree | 9b2f8401987eb02e9165c975c954c6f3647ee6d6 /mod_php3.c | |
parent | 7e0ee50ed484aae4ebc0601392157c9a79407919 (diff) | |
download | php-git-5dbe9246609e59439ca0340aed5b2eaac1bed7d8.tar.gz |
- Make ISAPI hook in as an extension too.
- Some work on moving stuff to SAPI.
Diffstat (limited to 'mod_php3.c')
-rw-r--r-- | mod_php3.c | 6 |
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 |