summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2017-08-01 19:01:56 +0200
committerJoel Klinghed <the_jk@opera.com>2017-08-01 19:01:56 +0200
commit913d9eba5a277c3693e44752a161bf060bae259d (patch)
treeb0350d749215c33d0d92e65d5f27146391144fc0
parent445c6af525f543255f0f4971f8cc554a96f4ab4c (diff)
Fix typo
-rw-r--r--src/ssl_mbedtls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl_mbedtls.cc b/src/ssl_mbedtls.cc
index 1809eba..a34067b 100644
--- a/src/ssl_mbedtls.cc
+++ b/src/ssl_mbedtls.cc
@@ -84,7 +84,7 @@ public:
bool init(Logger* logger, std::string const& path) {
auto ret = mbedtls_x509_crt_parse_file(&chain_, path.c_str());
if (ret) {
- logerr(logger, ret, "Error loeading cert store bundle");
+ logerr(logger, ret, "Error loading cert store bundle");
return false;
}
return true;