CLOUD: Fix code formatting

This commit is contained in:
Peter Bozsó 2016-07-21 09:29:54 +02:00 committed by Alexander Tkachev
parent 772d8ee42b
commit 9254df2d96
35 changed files with 380 additions and 366 deletions

View file

@ -163,7 +163,7 @@ void Reader::parseFirstLine(const Common::String &headers) {
const char *cstr = headers.c_str();
const char *position = strstr(cstr, "\r\n");
if (position) { //we have at least one line - and we want the first one
//"<METHOD> <path> HTTP/<VERSION>\r\n"
//"<METHOD> <path> HTTP/<VERSION>\r\n"
Common::String method, path, http, buf;
uint32 length = position - cstr;
if (headersSize > length) headersSize = length;