From ecad72f7820a926204357a59e1d362defe914f8f Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 23 Aug 2001 21:03:44 +0000 Subject: [PATCH] Add a canonical_filename value (should remain the r->filename identity) so we can tell if a 3rd party module broke the canonical form of the filename by not calling apr_filepath_merge(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90585 13f79535-47bb-0310-9956-ffa450edef68 --- include/httpd.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/httpd.h b/include/httpd.h index 7f264f67d9..5808f166b8 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -786,6 +786,8 @@ struct request_rec { char *uri; /** The filename on disk that this response corresponds to */ char *filename; + /** The true filename, we canonicalize if it differs from r->filename */ + char *canonical_filename; /** The path_info for this request if there is any. */ char *path_info; /** QUERY_ARGS, if any */ -- 2.50.1