php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32673 Compile error for apache2filter
Submitted: 2005-04-11 16:51 UTC Modified: 2005-04-11 17:40 UTC
From: dexter at debian dot org Assigned:
Status: Closed Package: Compile Failure
PHP Version: 5CVS-2005-04-11 (dev) OS: Debian
Private report: No CVE-ID: None
 [2005-04-11 16:51 UTC] dexter at debian dot org
Description:
------------
There is critical bug after fixing #32587. 
 
In file included 
from /home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/sapi_apache2.c:1: 
/home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/mod_php5_filter.c: 
In function `php_add_filter': 
/home/dexter/src/alioth/pear-package/local/php5/debian/tmp/php-5.0.4/sapi/apache2filter/mod_php5_filter.c:632: 
error: parse error before numeric constant 
make: *** [sapi/apache2filter/sapi_apache2.lo] Błąd 1 
 
The patch: 
 
Index: sapi/apache2filter/sapi_apache2.c 
=================================================================== 
RCS 
file: /repository/php-src/sapi/apache2filter/sapi_apache2.c,v 
retrieving revision 1.125.2.2 
diff -u -r1.125.2.2 sapi_apache2.c 
--- sapi/apache2filter/sapi_apache2.c   8 Apr 2005 
20:34:03 -0000       1.125.2.2 
+++ sapi/apache2filter/sapi_apache2.c   11 Apr 2005 
14:49:10 -0000 
@@ -628,7 +628,7 @@ 
        /* for those who still have Set*Filter PHP 
configured */ 
        while (f) { 
                if (strcmp(f->frec->name, "PHP") == 0) { 
-                       ap_log_error(APLOG_MARK, 
APLOG_WARNING 
+                       ap_log_error(APLOG_MARK, 
APLOG_WARNING, 
                                     0, r->server, 
                                     "\"Set%sFilter PHP\" 
already configured for %s", 
                                     output ? "Output" : 
"Input", r->uri); 
 


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-04-11 17:40 UTC] sniper@php.net
Fixed in CVS.

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue Jul 15 13:01:34 2025 UTC