diff options
| author | Zeev Suraski <zeev@php.net> | 2001-01-07 18:38:38 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-01-07 18:38:38 +0000 |
| commit | 7235542ceea62856d6cfd1adab9d90e271b08cd5 (patch) | |
| tree | 9dc31a4c02ca8fe82107ff8cd96083df0af20900 | |
| parent | 5f6bc23931f8ae8d87d955c51f25bf1a8c7276bd (diff) | |
| download | php-git-7235542ceea62856d6cfd1adab9d90e271b08cd5.tar.gz | |
Change get_ini_entry to get_configuration_directive
| -rw-r--r-- | main/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.c b/main/main.c index aa6423b122..4745fc78f9 100644 --- a/main/main.c +++ b/main/main.c @@ -504,7 +504,7 @@ static FILE *php_fopen_wrapper_for_zend(const char *filename, char **opened_path } -static int php_get_ini_entry_for_zend(char *name, uint name_length, zval *contents) +static int php_get_configuration_directive_for_zend(char *name, uint name_length, zval *contents) { zval *retval = cfg_get_entry(name, name_length); @@ -816,7 +816,7 @@ int php_module_startup(sapi_module_struct *sf) zuf.message_handler = php_message_handler_for_zend; zuf.block_interruptions = sapi_module.block_interruptions; zuf.unblock_interruptions = sapi_module.unblock_interruptions; - zuf.get_ini_entry = php_get_ini_entry_for_zend; + zuf.get_configuration_directive = php_get_configuration_directive_for_zend; zuf.ticks_function = php_run_ticks; zend_startup(&zuf, NULL, 1); |
