From 1e8cf5151e59d04e7b13033e01da435c452daeeb Mon Sep 17 00:00:00 2001 From: Tse Kit Yam Date: Sat, 1 Apr 2017 23:19:57 +0800 Subject: [PATCH] Fix typo --- src/HttpServer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpServer.cc b/src/HttpServer.cc index bd3a7a33..1496ee89 100644 --- a/src/HttpServer.cc +++ b/src/HttpServer.cc @@ -188,7 +188,7 @@ bool HttpServer::receiveRequest() socketRecvBuffer_->drain(headerProcessor_->getLastBytesProcessed()); bodyConsumed_ = 0; if (setupResponseRecv() < 0) { - A2_LOG_INFO("Request path is invaild. Ignore the request body."); + A2_LOG_INFO("Request path is invalid. Ignore the request body."); } const std::string& contentLengthHdr = lastRequestHeader_->find(HttpHeader::CONTENT_LENGTH);