]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Florent <fcarli@gmail.com>
authorChristos Tsantilas <chtsanti@users.sourceforge.net>
Thu, 30 Dec 2010 11:16:21 +0000 (13:16 +0200)
committerChristos Tsantilas <chtsanti@users.sourceforge.net>
Thu, 30 Dec 2010 11:16:21 +0000 (13:16 +0200)
Bug 3129: ssl-crtd / Dynamically generated certicates' "subject" and "issuer" include "-----BEGIN CERTIFICATE-----"

src/ssl/crtd_message.cc

index c837926c7e13d5aedaebf1da5148088bedfe6d5e..21b85e2b3d946d0b8aac7ff31153a3731a8bb0b1 100644 (file)
@@ -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");