diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2023-05-10 03:03:28 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2023-05-10 03:03:28 -0400 |
commit | c223201bb2966d90f4cac085473ec5faa1951ec8 (patch) | |
tree | 5f0655a30f461a66d56c2292e82ff27c08d21ae1 /src/plugin.c | |
parent | 0ed99f4fe6a755b525d16947dfc256304cff289b (diff) | |
download | lighttpd-git-c223201bb2966d90f4cac085473ec5faa1951ec8.tar.gz |
[core] treat mod_h2 as built-in module (for now)lighttpd-1.4.70
(addendum to previous commit)
(lighttpd test confs set server.compat-module-load = "disable")
Note: a future release of lighttpd will build mod_h2 as a separate
module (not built-in) when lighttpd is built with shared modules (.so)
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index e2b21571..98b3114b 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -136,7 +136,7 @@ int plugins_load(server *srv) { if (buffer_eq_slen(&ds->value, CONST_STR_LEN("mod_deflate"))) continue; } - if (buffer_eq_slen(module, CONST_STR_LEN("mod_h2"))) + if (buffer_eq_slen(&ds->value, CONST_STR_LEN("mod_h2"))) continue; return -1; } |