summaryrefslogtreecommitdiff
path: root/src/mod_mbedtls.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_mbedtls.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_mbedtls.c')
-rw-r--r--src/mod_mbedtls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_mbedtls.c b/src/mod_mbedtls.c
index 0ca1860e..c18cfa6a 100644
--- a/src/mod_mbedtls.c
+++ b/src/mod_mbedtls.c
@@ -2445,7 +2445,7 @@ int mod_mbedtls_plugin_init (plugin *p)
p->handle_connection_close = mod_mbedtls_handle_con_close;
p->handle_uri_raw = mod_mbedtls_handle_uri_raw;
p->handle_request_env = mod_mbedtls_handle_request_env;
- p->connection_reset = mod_mbedtls_handle_request_reset;
+ p->handle_request_reset = mod_mbedtls_handle_request_reset;
p->handle_trigger = mod_mbedtls_handle_trigger;
return 0;