diff options
author | Stefan Eissing <icing@apache.org> | 2021-04-20 12:16:05 +0000 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-04-20 12:16:05 +0000 |
commit | 8951949163612ad2f4ec936ac4a61154af0edce3 (patch) | |
tree | 80de0386c95cc48d3ea06a4f82606c5bded9aa10 /modules/lua/mod_lua.c | |
parent | 4754347970e03e5181a6618db158f509693ed280 (diff) | |
download | httpd-8951949163612ad2f4ec936ac4a61154af0edce3.tar.gz |
core/ap_ssl_*: changes after review by rpluem
- removed no longer needed (char*) casts when looking
up ssl variables.
- move 'goto cleanup;' on separate source line
- fixed check for wrong optional function in ap_run_ssl_var_lookup
- remove ap_bytes_t again from httpd.h and passes now ocsp
identifier as separate const char* and apr_size_t. This
follows more how such data is passed in the rest of the
server.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1889009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/lua/mod_lua.c')
-rw-r--r-- | modules/lua/mod_lua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lua/mod_lua.c b/modules/lua/mod_lua.c index c672de8644..356cbfe0dc 100644 --- a/modules/lua/mod_lua.c +++ b/modules/lua/mod_lua.c @@ -1704,7 +1704,7 @@ static const char *register_lua_root(cmd_parms *cmd, void *_cfg, const char *ap_lua_ssl_val(apr_pool_t *p, server_rec *s, conn_rec *c, request_rec *r, const char *var) { - return ap_ssl_var_lookup(p, s, c, r, (char *)var); + return ap_ssl_var_lookup(p, s, c, r, var); } int ap_lua_ssl_is_https(conn_rec *c) |