aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--src/daemon/connection.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/README b/README
index 1b2e70bb..c88cec5c 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
1Run "autoreconf -fi" to create configure. 1Run "autoreconf -fi" to create configure.
2 2
3This is still pre-alpha software. Below we list things that should be 3This is still alpha software. Below we list things that should be
4implemented (in order of importance) before we can claim to be 4implemented (in order of importance) before we can claim to be
5reasonably complete. #XXXX refers to the respective Mantis bug report 5reasonably complete. #XXXX refers to the respective Mantis bug report
6(or feature request). ARCH indicates that implementing this feature 6(or feature request). ARCH indicates that implementing this feature
diff --git a/src/daemon/connection.c b/src/daemon/connection.c
index 505e4aad..4315a5bc 100644
--- a/src/daemon/connection.c
+++ b/src/daemon/connection.c
@@ -1128,6 +1128,7 @@ MHD_connection_handle_write(struct MHD_Connection * connection) {
1128 connection->continuePos = 0; 1128 connection->continuePos = 0;
1129 connection->responseCode = 0; 1129 connection->responseCode = 0;
1130 connection->response = NULL; 1130 connection->response = NULL;
1131 connection->headers_received = NULL;
1131 connection->headersReceived = 0; 1132 connection->headersReceived = 0;
1132 connection->headersSent = 0; 1133 connection->headersSent = 0;
1133 connection->bodyReceived = 0; 1134 connection->bodyReceived = 0;