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 0e8bdf38c475e246ef8f1a3ed823bfa05fe64f89
parent 0d17d2228cdf58d50f4c0f9da118fbbf3a0df423
Author: Joris Vink <joris@coders.se>
Date:   Wed, 22 Oct 2014 20:50:32 +0200

Indenting police

Diffstat:
examples/ktunnel/client/client.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/examples/ktunnel/client/client.c b/examples/ktunnel/client/client.c @@ -406,8 +406,10 @@ ktunnel_connect(struct peer *peer, struct addrinfo *ai) if (l == -1) fatal("asprintf(): %s", errno_s); - if (SSL_write(peer->ssl, req, l) != l) - fatal("Failed to talk to %s:%s: %s", peer->host, peer->port, ssl_errno_s); + if (SSL_write(peer->ssl, req, l) != l) { + fatal("Failed to talk to %s:%s: %s", + peer->host, peer->port, ssl_errno_s); + } free(req);