iliaa Sun Apr 2 17:58:17 2006 UTC
Modified files: (Branch: PHP_5_1)
/php-src/sapi/apache mod_php5.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_php5.c?r1=1.19.2.6&r2=1.19.2.7&diff_format=u
Index: php-src/sapi/apache/mod_php5.c
diff -u php-src/sapi/apache/mod_php5.c:1.19.2.6
php-src/sapi/apache/mod_php5.c:1.19.2.7
--- php-src/sapi/apache/mod_php5.c:1.19.2.6 Wed Feb 15 11:09:05 2006
+++ php-src/sapi/apache/mod_php5.c Sun Apr 2 17:58:17 2006
@@ -17,7 +17,7 @@
| PHP 4.0 patches by Zeev Suraski <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: mod_php5.c,v 1.19.2.6 2006/02/15 11:09:05 tony2001 Exp $ */
+/* $Id: mod_php5.c,v 1.19.2.7 2006/04/02 17:58:17 iliaa Exp $ */
#include "php_apache_http.h"
#include "http_conf_globals.h"
@@ -307,8 +307,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.14.2.2&r2=1.14.2.3&diff_format=u
Index: php-src/main/logos.h
diff -u php-src/main/logos.h:1.14.2.2 php-src/main/logos.h:1.14.2.3
--- php-src/main/logos.h:1.14.2.2 Mon Mar 6 19:10:19 2006
+++ php-src/main/logos.h Sun Apr 2 17:58:17 2006
@@ -16,9 +16,9 @@
+----------------------------------------------------------------------+
*/
-/* $Id: logos.h,v 1.14.2.2 2006/03/06 19:10:19 cmv Exp $ */
+/* $Id: logos.h,v 1.14.2.3 2006/04/02 17:58:17 iliaa Exp $ */
-#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, 113, 0, 72, 0,
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php