jani            Mon Aug  6 18:14:14 2007 UTC

  Modified files:              
    /php-src/sapi/apache2filter apache_config.c 
  Log:
  Fix build
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/apache2filter/apache_config.c?r1=1.39&r2=1.40&diff_format=u
Index: php-src/sapi/apache2filter/apache_config.c
diff -u php-src/sapi/apache2filter/apache_config.c:1.39 
php-src/sapi/apache2filter/apache_config.c:1.40
--- php-src/sapi/apache2filter/apache_config.c:1.39     Fri Aug  3 09:38:43 2007
+++ php-src/sapi/apache2filter/apache_config.c  Mon Aug  6 18:14:13 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: apache_config.c,v 1.39 2007/08/03 09:38:43 jani Exp $ */
+/* $Id: apache_config.c,v 1.40 2007/08/06 18:14:13 jani Exp $ */
 
 #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
 
@@ -172,7 +172,7 @@
                        zend_hash_move_forward(&d->config)) {
                zend_hash_get_current_data(&d->config, (void **) &data);
                phpapdebug((stderr, "APPLYING (%s)(%s)\n", str.s, data->value));
-               if (zend_alter_ini_entry(str, str_len, data->value, 
data->value_len, data->status, 
data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE) == FAILURE) {
+               if (zend_alter_ini_entry(str.s, str_len, data->value, 
data->value_len, data->status, 
data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE) == FAILURE) {
                        phpapdebug((stderr, "..FAILED\n"));
                }       
        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to