From 8a21f039be1f3bd2ab7695957b17127dc1e1976c Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Thu, 7 Sep 2017 22:20:09 -0300 Subject: [PATCH] Fix on the m_buf generation: avoid padding before request body --- src/transaction.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/transaction.cc b/src/transaction.cc index 54e459f0..b599cf64 100644 --- a/src/transaction.cc +++ b/src/transaction.cc @@ -1523,7 +1523,6 @@ std::string Transaction::toBuf() { a.append("\n"); } - a.append("\n\n"); if (this->m_requestBody.str().length() > 0) { a.append(this->m_requestBody.str().c_str()); a.append("\n\n");