Skip to content

Commit

Permalink
squash: use correct naming convention
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Dawson <[email protected]>
  • Loading branch information
mhdawson committed Jan 14, 2025
1 parent 5b544ff commit 18370e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crypto/crypto_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ void GetOpenSSLSecLevelCrypto(const FunctionCallbackInfo<Value>& args) {
return ThrowCryptoError(env, ERR_get_error(), "SSL_new");
}

int secLevel = SSL_get_security_level(ssl);
args.GetReturnValue().Set(secLevel);
int sec_level = SSL_get_security_level(ssl);
args.GetReturnValue().Set(sec_level);
}

void CryptoErrorStore::Capture() {
Expand Down

0 comments on commit 18370e6

Please sign in to comment.