summaryrefslogtreecommitdiff
path: root/src/mod_ssi.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-03-16 03:36:18 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-03-26 07:33:42 -0400
commitea38287a4cb327d8a2c7e976eccd0d996dec98a7 (patch)
treec7c61fadbeb7c74de983681d6873af3a48e0dca5 /src/mod_ssi.c
parent38c873585020ac35f04cd2a7a2a56c8ecd7b0064 (diff)
downloadlighttpd-git-ea38287a4cb327d8a2c7e976eccd0d996dec98a7.tar.gz
[multiple] do not clear physical.path if finished
do not reset r->physical.path (unneeded) if returning HANDLER_FINISHED error handler will reset r->physical.path, if necessary
Diffstat (limited to 'src/mod_ssi.c')
-rw-r--r--src/mod_ssi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mod_ssi.c b/src/mod_ssi.c
index ec4f3b78..ee7c4f06 100644
--- a/src/mod_ssi.c
+++ b/src/mod_ssi.c
@@ -1220,9 +1220,6 @@ static int mod_ssi_handle_request(request_st * const r, handler_ctx * const p) {
/* Reset the modified time of included files */
include_file_last_mtime = 0;
- /* reset physical.path */
- buffer_reset(&r->physical.path);
-
return 0;
}