summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-18 13:13:24 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-18 13:13:24 +0100
commit7fd2e1ce5a2a297ce8b36abb2ac9bbf393400032 (patch)
treed09d88ce33755cfb51790bb8df09d3c496bc5d14 /src
parente7d7fad999cba0bff770f6d4ea0775a56af388a9 (diff)
Fix operator=.
Diffstat (limited to 'src')
-rw-r--r--src/certificates.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/certificates.cc b/src/certificates.cc
index 51d6eac9..085cea80 100644
--- a/src/certificates.cc
+++ b/src/certificates.cc
@@ -110,7 +110,7 @@ Certificate::operator= (Certificate const & other)
RSA_free (_public_key);
_public_key = 0;
- read_string (other.certificate ());
+ read_string (other.certificate (true));
return *this;
}