Skip to content

Commit

Permalink
chore: remove redundant parenthesis
Browse files Browse the repository at this point in the history
Ticket: None

Signed-off-by: Daniel Skinstad Drabitzius <[email protected]>
  • Loading branch information
danielskinstad committed Oct 2, 2024
1 parent 8e05fad commit c7c71cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/crypto/platform/openssl/crypto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ ExpectedPrivateKey LoadFrom(const Args &args) {

ExpectedPrivateKey PrivateKey::Load(const Args &args) {
// Load OpenSSL config
if ((CONF_modules_load_file(nullptr, nullptr, 0) != OPENSSL_SUCCESS)) {
if (CONF_modules_load_file(nullptr, nullptr, 0) != OPENSSL_SUCCESS) {
log::Warning("Failed to load OpenSSL configuration file: " + GetOpenSSLErrorMessage());
}

Expand Down

0 comments on commit c7c71cf

Please sign in to comment.