diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/HttpServer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HttpServer.cc b/src/HttpServer.cc index efdadda..35bd414 100644 --- a/src/HttpServer.cc +++ b/src/HttpServer.cc @@ -123,7 +123,7 @@ void Balau::HttpWorker::Do() { bool clientStop = false; while (!clientStop) - clientStop = !handleClient() || m_socket.isClosed(); + clientStop = !handleClient() || m_socket->isClosed(); } const char * Balau::HttpWorker::getName() { |