From: William A. Rowe Jr Date: Thu, 23 Aug 2001 21:03:44 +0000 (+0000) Subject: Add a canonical_filename value (should remain the r->filename identity) X-Git-Tag: 2.0.25~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ecad72f7820a926204357a59e1d362defe914f8f;p=apache 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 --- 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 */