From 7fb937eabeb3a757d94083274b05a3f401c43d1a Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Thu, 11 Oct 2018 10:01:22 -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 2250af89..0cad0483 100644 --- a/src/transaction.cc +++ b/src/transaction.cc @@ -1603,7 +1603,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");