From 18370e600213d4df6de58aabc2681938572db39b Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Tue, 14 Jan 2025 22:20:20 +0000 Subject: [PATCH] squash: use correct naming convention Signed-off-by: Michael Dawson --- src/crypto/crypto_util.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/crypto_util.cc b/src/crypto/crypto_util.cc index 2a1a962f703c6a..7d9954560ab4a5 100644 --- a/src/crypto/crypto_util.cc +++ b/src/crypto/crypto_util.cc @@ -209,8 +209,8 @@ void GetOpenSSLSecLevelCrypto(const FunctionCallbackInfo& 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() {