diff options
| author | Joel Klinghed <the_jk@opera.com> | 2017-08-01 19:01:56 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@opera.com> | 2017-08-01 19:01:56 +0200 |
| commit | 913d9eba5a277c3693e44752a161bf060bae259d (patch) | |
| tree | b0350d749215c33d0d92e65d5f27146391144fc0 /src | |
| parent | 445c6af525f543255f0f4971f8cc554a96f4ab4c (diff) | |
Fix typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/ssl_mbedtls.cc | 2 |
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; |
