summaryrefslogtreecommitdiff
path: root/src/mod_scgi.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-07-25 08:23:58 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-08-02 07:47:41 -0400
commit33c8cf41dbcac4ff6383bb3f513422fa7c7af382 (patch)
tree068606977c1a059a540615bef26cdfec936eabd8 /src/mod_scgi.c
parentbb6a5d7821394cdf5ad9c5a6151a5f826fff5df2 (diff)
downloadlighttpd-git-33c8cf41dbcac4ff6383bb3f513422fa7c7af382.tar.gz
[multiple] rename connection_reset hook to request
rename connection_reset to handle_request_reset
Diffstat (limited to 'src/mod_scgi.c')
-rw-r--r--src/mod_scgi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_scgi.c b/src/mod_scgi.c
index 47b72ab7..562a0e09 100644
--- a/src/mod_scgi.c
+++ b/src/mod_scgi.c
@@ -321,7 +321,7 @@ int mod_scgi_plugin_init(plugin *p) {
p->init = gw_init;
p->cleanup = gw_free;
p->set_defaults = mod_scgi_set_defaults;
- p->connection_reset = gw_connection_reset;
+ p->handle_request_reset = gw_handle_request_reset;
p->handle_uri_clean = scgi_check_extension_1;
p->handle_subrequest_start = scgi_check_extension_2;
p->handle_subrequest = gw_handle_subrequest;