1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-03-15 11:50:03 +01:00

- fixed generation of TLS client certificates when using an openssl binary linked with libressl (thanks op!).

This commit is contained in:
cage 2022-01-16 16:49:00 +01:00
parent b7af742cb0
commit 8e1586de15

View File

@ -132,7 +132,7 @@
(let* ((cert-file (text-utils:strcat outdir fs:*directory-sep* +ssl-cert-name+))
(key-file (text-utils:strcat outdir fs:*directory-sep* +ssl-key-name+))
(cmd-args (format nil
(text-utils:strcat "req -new -nodes -x509 -days 365 -batch "
(text-utils:strcat "req -new -nodes -x509 -days 365 -subj / "
"-keyout ~a -outform PEM -out ~a")
key-file
cert-file)))