summaryrefslogtreecommitdiff
path: root/src/mod_magnet_cache.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-11-26 02:13:05 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:28 -0400
commit50bdb55de804953378171cd1caf82bef27ec6cab (patch)
tree7246396bcd91e110122f6bf98c47a651c188a395 /src/mod_magnet_cache.h
parent0fcd51438dc663dc1bebf54404e94128924687dd (diff)
downloadlighttpd-git-50bdb55de804953378171cd1caf82bef27ec6cab.tar.gz
[multiple] connection hooks no longer get (srv *)
(explicit (server *) not passed; available in con->srv)
Diffstat (limited to 'src/mod_magnet_cache.h')
-rw-r--r--src/mod_magnet_cache.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mod_magnet_cache.h b/src/mod_magnet_cache.h
index 661f2c0e..bb9a9a5d 100644
--- a/src/mod_magnet_cache.h
+++ b/src/mod_magnet_cache.h
@@ -26,7 +26,6 @@ typedef struct {
script_cache *script_cache_init(void);
void script_cache_free_data(script_cache *cache);
-lua_State *script_cache_get_script(server *srv, connection *con,
- script_cache *cache, buffer *name);
+lua_State *script_cache_get_script(connection *con, script_cache *cache, buffer *name);
#endif