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 e9b56c81a533deeda3a86b72f5415dfd64ba81b6
parent 2f4387e0cd8425a24d5bc371921cf0ca030c488b
Author: Joris Vink <joris@coders.se>
Date:   Thu,  7 Jan 2016 10:09:44 +0100

Do not fatal if no listeners are defined.

Diffstat:
src/config.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/config.c b/src/config.c @@ -160,9 +160,6 @@ kore_parse_config(void) if (!kore_module_loaded()) fatal("no site module was loaded"); - if (LIST_EMPTY(&listeners)) - fatal("no listeners defined"); - if (skip_chroot != 1 && chroot_path == NULL) { fatal("missing a chroot path"); }