}
size_t ServerStateData::replyBodySpace(const MemBuf &readBuf,
- const size_t minSpace) const
+ const size_t minSpace) const
{
size_t space = readBuf.spaceSize(); // available space w/o heroic measures
if (space < minSpace) {
HttpStateData::maybeReadVirginBody()
{
// we may need to grow the buffer if headers do not fit
- const int minRead = flags.headers_parsed ? 0 : 1024;
+ const int minRead = flags.headers_parsed ? 0 :1024;
const int read_sz = replyBodySpace(*readBuf, minRead);
debugs(11,9, HERE << (flags.do_next_read ? "may" : "wont") <<