summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2005-03-02 11:31:21 +0000
committerJan Kneschke <jan@kneschke.de>2005-03-02 11:31:21 +0000
commit853b4f5b06c86cdb558f421266f43737d0f8bdca (patch)
treecffdeb55f19091e3d09de8b4816e28a922c54a44
parent40e8c6714aa1f371332fcd0b2999d16a432c85e1 (diff)
downloadlighttpd-git-853b4f5b06c86cdb558f421266f43737d0f8bdca.tar.gz
don't touch the exit-conditions for the loop directly (reverting a this part of one of the last changesets)
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@73 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--src/connections.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/connections.c b/src/connections.c
index 85004b7b..b18f3245 100644
--- a/src/connections.c
+++ b/src/connections.c
@@ -1256,7 +1256,6 @@ int connection_state_machine(server *srv, connection *con) {
connection_set_state(srv, con, CON_STATE_HANDLE_REQUEST);
- done = 1; /* is this neccesary ? */
break;
case HANDLER_COMEBACK:
done = -1;
@@ -1264,7 +1263,6 @@ int connection_state_machine(server *srv, connection *con) {
/* come back here */
connection_set_state(srv, con, CON_STATE_HANDLE_REQUEST);
- done = 1; /* is this neccesary ? */
break;
case HANDLER_ERROR:
/* something went wrong */