summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-03 01:29:48 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-16 01:20:38 +0100
commit116d38813e0269e584d6a7274409b22c685b9a2f (patch)
tree9ac9625a6b3e53bf0c35f10d8f4c2f3487461143
parentf2f33d7c4816d09928b6b7c36836f5bcdf6fc2f1 (diff)
Fix comment nonsense.
-rw-r--r--src/lib/http_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http_server.cc b/src/lib/http_server.cc
index 4f31ab534..1ddf9dd7f 100644
--- a/src/lib/http_server.cc
+++ b/src/lib/http_server.cc
@@ -261,7 +261,7 @@ HTTPServer::handle(shared_ptr<Socket> socket)
/* I think we should keep the socket open if the client requested keep-alive, but some browsers
* send keep-alive then don't re-use the connection. Since we can only accept one request at once,
* this blocks until our request read (above) times out. We probably should accept multiple
- * requests in parallel, but it's easier for not to use close the socket.
+ * requests in parallel, but it's easier for now to close the socket.
*/
socket->close();
}