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 b648c108c2fa80ceb804d88b9d3a6b57a3079690
parent e25801f461c0d60963f53fd65cb406718a1c5031
Author: Joris Vink <joris@coders.se>
Date:   Wed, 13 May 2015 09:58:10 +0200

Merge pull request #50 from thorduri/janitor

fix copy pasto.
Diffstat:
src/net.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/net.c b/src/net.c @@ -253,7 +253,7 @@ net_recv_flush(struct connection *c) kore_debug("net_recv_flush(%p)", c); if (c->rnb == NULL) - fatal("net_recv_flush(): nb->cb == NULL"); + fatal("net_recv_flush(): c->rnb == NULL"); while (c->flags & CONN_READ_POSSIBLE) { if (!c->read(c, &r))