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-c4023f1b3aa9svn/tags/release-1.3.12
parent
40e8c6714a
commit
853b4f5b06
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue