From: Bill Stoddard Date: Tue, 30 Jul 2002 18:14:47 +0000 (+0000) Subject: Fix the PATH exposure security problem I thought I fixed in 2.0.36. X-Git-Tag: 2.0.40~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2a8d4f41996dad1c84be398fad808fc0e5d75b9;p=thirdparty%2Fapache%2Fhttpd.git Fix the PATH exposure security problem I thought I fixed in 2.0.36. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96240 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_log.h b/include/http_log.h index f2b0bb9f6da..669c564a1af 100644 --- a/include/http_log.h +++ b/include/http_log.h @@ -119,7 +119,7 @@ extern "C" { * Note: Client generated text streams sent back to the client MUST * be escaped to prevent CSS attacks. */ -#define APLOG_TOCLIENT (APLOG_LEVELMASK + 2) +#define APLOG_TOCLIENT ((APLOG_LEVELMASK + 1) * 2) /* normal but significant condition on startup, usually printed to stderr */ #define APLOG_STARTUP ((APLOG_LEVELMASK + 1) * 4)