upate lusossl patch

This commit is contained in:
Daniel Barlow 2024-10-02 00:26:21 +01:00
parent 0844177d51
commit cc3e695174
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@
(crt:toPEM))) (crt:toPEM)))
(fn approve-request? [csr] (fn approve-request? [csr]
(let [{ : challengePassword } (csr:getAttributes)] (let [challengePassword (csr:getAttribute :challengePassword)]
(when challengePassword (when challengePassword
(accumulate [found false (accumulate [found false
_ v (ipairs challengePassword)] _ v (ipairs challengePassword)]

View File

@ -13,7 +13,7 @@ let
patches = [ patches = [
(fetchpatch { (fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/wahern/luaossl/pull/218.patch"; url = "https://patch-diff.githubusercontent.com/raw/wahern/luaossl/pull/218.patch";
hash = "sha256-0+5OR9t7nw8lPi7jcM/RwI8Qt8HeXwU1jvl+f+B5V38="; hash = "sha256-2GOliY4/RUzOgx3rqee3X3szCdUVxYDut7d+XFcUTJw=";
}) })
] ++ lib.optionals (o ? patches) o.patches; ] ++ lib.optionals (o ? patches) o.patches;
}); });