From 3c6a628ebd9699dcf760ed98df83c1a3c267bfb4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 3 Jan 2013 21:42:34 +0000 Subject: Some small fixes. --- src/certificates.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/certificates.cc b/src/certificates.cc index 621f44f2..ba0ebaae 100644 --- a/src/certificates.cc +++ b/src/certificates.cc @@ -46,7 +46,7 @@ Certificate::certificate () const BIO_free (bio); boost::replace_all (s, "-----BEGIN CERTIFICATE-----\n", ""); - boost::replace_all (s, "-----END CERTIFICATE-----\n", ""); + boost::replace_all (s, "\n-----END CERTIFICATE-----\n", ""); return s; } @@ -72,7 +72,10 @@ Certificate::name_for_xml (string const & n) x << *i << ","; } - return x.str().substr(0, x.str().length() - 2); + string s = x.str(); + boost::replace_all (s, "+", "\\+"); + + return s.substr(0, s.length() - 2); } string -- cgit v1.2.3