You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

  1. From a27e55b2dd0887f462c36ff788dde5c5de20a154 Mon Sep 17 00:00:00 2001
  2. From: Glenn Strauss <gstrauss@gluelogic.com>
  3. Date: Sat, 5 Dec 2020 11:19:03 -0500
  4. Subject: [PATCH] [core] add missing mod_wolfssl to ssl compat list
  5. add missing mod_wolfssl to ssl compat module list
  6. x-ref:
  7. "[lighttpd] -mod-wolfssl fails (requires dependency on -mod-openssl?)"
  8. https://github.com/openwrt/packages/issues/14139
  9. Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
  10. ---
  11. src/configfile.c | 2 ++
  12. 1 file changed, 2 insertions(+)
  13. diff --git a/src/configfile.c b/src/configfile.c
  14. index da444154..c7739c4f 100644
  15. --- a/src/configfile.c
  16. +++ b/src/configfile.c
  17. @@ -345,6 +345,8 @@ static void config_compat_module_load (server *srv) {
  18. append_mod_openssl = 0;
  19. else if (buffer_eq_slen(m, CONST_STR_LEN("mod_openssl")))
  20. append_mod_openssl = 0;
  21. + else if (buffer_eq_slen(m, CONST_STR_LEN("mod_wolfssl")))
  22. + append_mod_openssl = 0;
  23. else if (buffer_eq_slen(m, CONST_STR_LEN("mod_authn_file")))
  24. append_mod_authn_file = 0;
  25. else if (buffer_eq_slen(m, CONST_STR_LEN("mod_authn_ldap")))
  26. --
  27. 2.28.0