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 7209a67d473d9bae49bf5351dbd68fcb9f478c41
parent 97523e2768ff0ae72c3397dae9bc1e851008bf0f
Author: Joris Vink <joris@coders.se>
Date:   Fri,  4 Oct 2019 19:24:57 +0200

unbreak DEBUG builds

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

diff --git a/src/kore.c b/src/kore.c @@ -398,7 +398,7 @@ kore_server_bind(struct kore_server *srv, const char *ip, const char *port, struct listener *l; struct addrinfo hints, *results; - kore_debug("kore_server_bind(%s, %s, %s)", l->name, ip, port); + kore_debug("kore_server_bind(%s, %s, %s)", srv->name, ip, port); memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC;