summaryrefslogtreecommitdiff
path: root/sapi/apache_hooks/mod_php5.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-03-01 16:27:47 +0000
committerDmitry Stogov <dmitry@php.net>2006-03-01 16:27:47 +0000
commit6f7619cf6fbfd24af6b90e437d4cde0b7ec33d41 (patch)
treedd5a04cfcb5960c19638267d659daa056dcd938e /sapi/apache_hooks/mod_php5.c
parent9158218d3a76256de1adaffd185f1429631b8b20 (diff)
downloadphp-git-6f7619cf6fbfd24af6b90e437d4cde0b7ec33d41.tar.gz
Unicode support: zstr union
Diffstat (limited to 'sapi/apache_hooks/mod_php5.c')
-rw-r--r--sapi/apache_hooks/mod_php5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache_hooks/mod_php5.c b/sapi/apache_hooks/mod_php5.c
index e829986629..6fb54fcac6 100644
--- a/sapi/apache_hooks/mod_php5.c
+++ b/sapi/apache_hooks/mod_php5.c
@@ -781,7 +781,7 @@ static zend_bool should_overwrite_per_dir_entry(HashTable *target_ht, php_per_di
{
php_per_dir_entry *new_per_dir_entry;
- if (zend_hash_find(target_ht, hash_key->arKey, hash_key->nKeyLength, (void **) &new_per_dir_entry)==FAILURE) {
+ if (zend_u_hash_find(target_ht, hash_key->type, hash_key->arKey, hash_key->nKeyLength, (void **) &new_per_dir_entry)==FAILURE) {
return 1; /* does not exist in dest, copy from source */
}