From 6d6fc095ab5b771a3b935c1c7e21449a0bf0397c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Fri, 8 Aug 2008 19:34:00 +0200 Subject: [PATCH] Fix typo in connections.c --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 2415ef1..c3c84ad 100644 --- a/src/connection.c +++ b/src/connection.c @@ -327,7 +327,7 @@ void connection_state_machine(server *srv, connection *con) { if (CORE_OPTION(CORE_OPTION_DEBUG_REQUEST_HANDLING)) { TRACE(srv, "%s", "send 100 Continue"); } - chunkqueue_append_mem(cq->raw_out, CONST_STR_LEN("HTTP/1.1 100 Continue\r\n\r\n")); + chunkqueue_append_mem(con->raw_out, CONST_STR_LEN("HTTP/1.1 100 Continue\r\n\r\n")); con->expect_100_cont = FALSE; ev_io_add_events(srv->loop, &con->sock.watcher, EV_WRITE); }