summaryrefslogtreecommitdiff
path: root/src/response.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-06-09 04:17:40 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-08-27 02:16:53 -0400
commitd5366c0aeeb749e14342e01d0aa03c0f99278c95 (patch)
treec20d862f2a65dbd1cc564f70105e999236ae74b9 /src/response.c
parentd38d5b4b487500774b50e060c11b194652b0a149 (diff)
downloadlighttpd-git-d5366c0aeeb749e14342e01d0aa03c0f99278c95.tar.gz
[core] request_config_reset()
move configfile.c:config_reset_config() to reqpool.c:request_config_reset()
Diffstat (limited to 'src/response.c')
-rw-r--r--src/response.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/response.c b/src/response.c
index 01237592..c139e2db 100644
--- a/src/response.c
+++ b/src/response.c
@@ -2,6 +2,7 @@
#include "response.h"
#include "request.h"
+#include "reqpool.h"
#include "base.h"
#include "fdevent.h"
#include "http_header.h"
@@ -619,7 +620,7 @@ static handler_t http_response_comeback (request_st * const r)
if (NULL != r->handler_module || !buffer_is_unset(&r->physical.path))
return HANDLER_GO_ON;
- config_reset_config(r);
+ request_config_reset(r);
if (__builtin_expect( (r->http_host != NULL), 1)) {
buffer_copy_buffer(&r->uri.authority, r->http_host);