We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b544ff commit 18370e6Copy full SHA for 18370e6
src/crypto/crypto_util.cc
@@ -209,8 +209,8 @@ void GetOpenSSLSecLevelCrypto(const FunctionCallbackInfo<Value>& args) {
209
return ThrowCryptoError(env, ERR_get_error(), "SSL_new");
210
}
211
212
- int secLevel = SSL_get_security_level(ssl);
213
- args.GetReturnValue().Set(secLevel);
+ int sec_level = SSL_get_security_level(ssl);
+ args.GetReturnValue().Set(sec_level);
214
215
216
void CryptoErrorStore::Capture() {
0 commit comments