From: Christos Tsantilas Date: Thu, 30 Dec 2010 11:16:21 +0000 (+0200) Subject: Author: Florent X-Git-Tag: take00~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4e903d5920535616fc46f38f7d80ec04fb8760ea;p=thirdparty%2Fsquid.git Author: Florent Bug 3129: ssl-crtd / Dynamically generated certicates' "subject" and "issuer" include "-----BEGIN CERTIFICATE-----" --- diff --git a/src/ssl/crtd_message.cc b/src/ssl/crtd_message.cc index c837926c7e..21b85e2b3d 100644 --- a/src/ssl/crtd_message.cc +++ b/src/ssl/crtd_message.cc @@ -170,7 +170,7 @@ void Ssl::CrtdMessage::composeBody(CrtdMessage::BodyParams const & map, std::str body += i->first + "=" + i->second; } if (!other_part.empty()) - body += other_part; + body += '\n' + other_part; } const std::string Ssl::CrtdMessage::code_new_certificate("new_certificate");