Skip to content

Commit 18370e6

Browse files
committed
squash: use correct naming convention
Signed-off-by: Michael Dawson <[email protected]>
1 parent 5b544ff commit 18370e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/crypto/crypto_util.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ void GetOpenSSLSecLevelCrypto(const FunctionCallbackInfo<Value>& args) {
209209
return ThrowCryptoError(env, ERR_get_error(), "SSL_new");
210210
}
211211

212-
int secLevel = SSL_get_security_level(ssl);
213-
args.GetReturnValue().Set(secLevel);
212+
int sec_level = SSL_get_security_level(ssl);
213+
args.GetReturnValue().Set(sec_level);
214214
}
215215

216216
void CryptoErrorStore::Capture() {

0 commit comments

Comments
 (0)