diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-22 15:15:43 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-22 15:39:46 +0100 |
commit | 91ba464409894c0215e54f086722309b9634d6f2 (patch) | |
tree | 9dd9364ab5a64716992055a3c22f2e2ad5400949 /src/buildtool/auth/authentication.hpp | |
parent | d7d81aa3ed9fedd5e78d6e5aedb43b124427914f (diff) | |
download | justbuild-91ba464409894c0215e54f086722309b9634d6f2.tar.gz |
cleanup: Fix typos in code line comments and logging messages
Diffstat (limited to 'src/buildtool/auth/authentication.hpp')
-rw-r--r-- | src/buildtool/auth/authentication.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/auth/authentication.hpp b/src/buildtool/auth/authentication.hpp index 447d9f1c..a903f7fe 100644 --- a/src/buildtool/auth/authentication.hpp +++ b/src/buildtool/auth/authentication.hpp @@ -99,7 +99,7 @@ class Auth { return false; } - // to enable mTLS, both tls_client_{ceritifcate,key} must be + // to enable mTLS, both tls_client_{certificate,key} must be // supplied if (ClientCert().empty() && not(ClientKey().empty())) { Logger::Log(LogLevel::Error, @@ -112,7 +112,7 @@ class Auth { return false; } - // to enable mTLS, both tls_server_{ceritifcate,key} must be + // to enable mTLS, both tls_server_{certificate,key} must be // supplied if (ServerCert().empty() && not(ServerKey().empty())) { Logger::Log(LogLevel::Error, |