iliaa           Sun Apr  2 17:59:33 2006 UTC

  Modified files:              (Branch: PHP_4_4)
    /php-src/sapi/apache        mod_php4.c 
    /php-src/main       logos.h 
  Log:
  MFH:
  Removed extra space in the Content-Type header for logos
  Simplified stderr error reporting in apache sapi.
  
  
http://cvs.php.net/viewcvs.cgi/php-src/sapi/apache/mod_php4.c?r1=1.146.2.15.2.1&r2=1.146.2.15.2.2&diff_format=u
Index: php-src/sapi/apache/mod_php4.c
diff -u php-src/sapi/apache/mod_php4.c:1.146.2.15.2.1 
php-src/sapi/apache/mod_php4.c:1.146.2.15.2.2
--- php-src/sapi/apache/mod_php4.c:1.146.2.15.2.1       Sun Jan  1 13:47:01 2006
+++ php-src/sapi/apache/mod_php4.c      Sun Apr  2 17:59:33 2006
@@ -17,7 +17,7 @@
    | PHP 4.0 patches by Zeev Suraski <[EMAIL PROTECTED]>                      |
    +----------------------------------------------------------------------+
  */
-/* $Id: mod_php4.c,v 1.146.2.15.2.1 2006/01/01 13:47:01 sniper Exp $ */
+/* $Id: mod_php4.c,v 1.146.2.15.2.2 2006/04/02 17:59:33 iliaa Exp $ */
 
 #include "php_apache_http.h"
 #include "http_conf_globals.h"
@@ -290,8 +290,7 @@
                log_error(message, ((request_rec *) 
SG(server_context))->server);
 #endif
        } else {
-               fprintf(stderr, "%s", message);
-               fprintf(stderr, "\n");
+               fprintf(stderr, "%s\n", message);
        }
 }
 /* }}} */
http://cvs.php.net/viewcvs.cgi/php-src/main/logos.h?r1=1.6.2.1&r2=1.6.2.1.2.1&diff_format=u
Index: php-src/main/logos.h
diff -u php-src/main/logos.h:1.6.2.1 php-src/main/logos.h:1.6.2.1.2.1
--- php-src/main/logos.h:1.6.2.1        Thu Mar  3 09:58:20 2005
+++ php-src/main/logos.h        Sun Apr  2 17:59:33 2006
@@ -1,4 +1,4 @@
-#define CONTEXT_TYPE_IMAGE_GIF "Content-Type:  image/gif"
+#define CONTEXT_TYPE_IMAGE_GIF "Content-Type: image/gif"
 
 unsigned char zend_logo[] = {
         71,  73,  70,  56,  57,  97, 100,   0,  58,   0, 

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

Reply via email to