2
0
Fork 0

Fix typo in connections.c

This commit is contained in:
Stefan Bühler 2008-08-08 19:34:00 +02:00
parent 124e21ee7d
commit 6d6fc095ab
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}