kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 86ecb85f035ccbe06f3a3a38985eba7a0f494912
parent 0d39e5c62a4eb11ac476966b870475d4074195bc
Author: Joris Vink <joris@coders.se>
Date:   Thu,  2 Dec 2021 19:33:20 +0100

use correct privsep name for acme

Diffstat:
src/config.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/config.c b/src/config.c @@ -973,7 +973,7 @@ configure_privsep(char *options) } else if (!strcmp(argv[0], "keymgr")) { current_privsep = &keymgr_privsep; #if defined(KORE_USE_ACME) - } else if (!strcmp(argv[0], "keymgr")) { + } else if (!strcmp(argv[0], "acme")) { current_privsep = &acme_privsep; #endif } else {