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 116f935e1070c95537cc222a5c2a6499700864a4
parent 9fd30db5985e10feabb7ae6c50909db54cc63655
Author: Joris Vink <joris@coders.se>
Date:   Tue,  7 Sep 2021 22:19:21 +0200

use the correct name for acme.

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

diff --git a/src/python.c b/src/python.c @@ -1863,7 +1863,7 @@ python_kore_privsep(PyObject *self, PyObject *args, PyObject *kwargs) } else if (!strcmp(val, "keymgr")) { ps = &keymgr_privsep; #if defined(KORE_USE_ACME) - } else if (!strcmp(val, "keymgr")) { + } else if (!strcmp(val, "acme")) { ps = &acme_privsep; #endif } else {