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 b3ffd33 commit 7e3ae65Copy full SHA for 7e3ae65
src/libraries/Common/src/Interop/Unix/System.Security.Cryptography.Native/Interop.OpenSslAvailable.cs
@@ -11,9 +11,9 @@ internal static class OpenSslNoInit
11
[DllImport(Libraries.CryptoNative, EntryPoint = "CryptoNative_OpenSslAvailable")]
12
private static extern int OpenSslAvailable();
13
14
- private static readonly Lazy<bool> s_LazyOpenSslAvailable =
+ private static readonly Lazy<bool> s_openSslAvailable =
15
new Lazy<bool>(() => OpenSslAvailable() != 0);
16
17
- internal static bool OpenSslIsAvailable => s_LazyOpenSslAvailable.Value;
+ internal static bool OpenSslIsAvailable => s_openSslAvailable.Value;
18
}
19
0 commit comments