diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-02-05 00:41:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-02-05 00:41:40 +0000 |
commit | acc9c13c3615d9dce0df6b99019aeb55e90e5528 (patch) | |
tree | 0e5cf8633691c5c5108894500ecbd80a22a52d96 /sapi/apache/mod_php4.c | |
parent | ad7facdf2b628ec1e26dff2b4826587c753e005f (diff) | |
download | php-git-acc9c13c3615d9dce0df6b99019aeb55e90e5528.tar.gz |
Build Fix.
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index a2447800d2..0803edef4a 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -717,7 +717,7 @@ static void *php_create_dir(pool *p, char *dummy) static void *php_merge_dir(pool *p, void *basev, void *addv) { /* This function *must* return addv, and not modify basev */ - zend_hash_merge_ex((HashTable *) addv, (HashTable *) basev, (copy_ctor_func_t) copy_per_dir_entry, sizeof(php_per_dir_entry), (zend_bool (*)(void *, void *)) should_overwrite_per_dir_entry); + zend_hash_merge_ex((HashTable *) addv, (HashTable *) basev, (copy_ctor_func_t) copy_per_dir_entry, sizeof(php_per_dir_entry), (merge_checker_func_t) should_overwrite_per_dir_entry, NULL); return addv; } /* }}} */ |