Skip to content

Commit 7e3ae65

Browse files
committed
Code review feedback
1 parent b3ffd33 commit 7e3ae65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libraries/Common/src/Interop/Unix/System.Security.Cryptography.Native/Interop.OpenSslAvailable.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ internal static class OpenSslNoInit
1111
[DllImport(Libraries.CryptoNative, EntryPoint = "CryptoNative_OpenSslAvailable")]
1212
private static extern int OpenSslAvailable();
1313

14-
private static readonly Lazy<bool> s_LazyOpenSslAvailable =
14+
private static readonly Lazy<bool> s_openSslAvailable =
1515
new Lazy<bool>(() => OpenSslAvailable() != 0);
1616

17-
internal static bool OpenSslIsAvailable => s_LazyOpenSslAvailable.Value;
17+
internal static bool OpenSslIsAvailable => s_openSslAvailable.Value;
1818
}
1919
}

0 commit comments

Comments
 (0)