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 ba9bc3b56e24c3652f4cd808463ad45f78579ba8
parent 29ca36737f24cc173efa6f234551d066a70328e6
Author: Joris Vink <joris@sanctorum.se>
Date:   Sun, 29 Mar 2026 12:31:06 +0200

Fix whitespace issue when printing built-ins.

From Shek Muktar.

Diffstat:
src/kore.c | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/kore.c b/src/kore.c @@ -824,30 +824,30 @@ kore_server_start(int argc, char *argv[]) __progname, kore_version, kore_build_date); kore_log(LOG_INFO, "memory pool protections: %s", kore_mem_guard ? "enabled" : "disabled"); - kore_log(LOG_INFO, "built-ins: " + kore_log(LOG_INFO, "built-ins:" #if defined(__linux__) - "seccomp " + " seccomp" #endif #if defined(KORE_USE_PGSQL) - "pgsql " + " pgsql" #endif #if defined(KORE_USE_TASKS) - "tasks " + " tasks" #endif #if defined(KORE_USE_JSONRPC) - "jsonrpc " + " jsonrpc" #endif #if defined(KORE_USE_PYTHON) - "python " + " python" #endif #if defined(KORE_USE_ACME) - "acme " + " acme" #endif #if defined(KORE_USE_CURL) - "curl " + " curl" #endif #if defined(KORE_USE_LUA) - "lua " + " lua" #endif ); }