summaryrefslogtreecommitdiff
path: root/src/certificate.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 01:24:48 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 01:24:48 +0200
commit13154bc1a9b341f46994607fdde2e725444a6e21 (patch)
tree3fcf211b397092798b2aa39af4cc567d146a574c /src/certificate.cc
parent9853cbf566fdfdea096333c4caa788c29fa5c57b (diff)
Remove String namespace from around compose().compose
Diffstat (limited to 'src/certificate.cc')
-rw-r--r--src/certificate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/certificate.cc b/src/certificate.cc
index 4508729f..4e2f1e8a 100644
--- a/src/certificate.cc
+++ b/src/certificate.cc
@@ -439,7 +439,7 @@ Certificate::public_key () const
_public_key = EVP_PKEY_get1_RSA (key);
if (!_public_key) {
- throw MiscError (String::compose ("could not get RSA public key (%1)", ERR_error_string (ERR_get_error(), 0)));
+ throw MiscError (compose("could not get RSA public key (%1)", ERR_error_string (ERR_get_error(), 0)));
}
return _public_key;