From f2a8d4f41996dad1c84be398fad808fc0e5d75b9 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Tue, 30 Jul 2002 18:14:47 +0000 Subject: [PATCH] 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 --- include/http_log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.2