We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5f191a commit da92d29Copy full SHA for da92d29
1 file changed
src/CommonLib/Cache.cs
@@ -63,7 +63,7 @@ internal static void AddSidToDomain(string key, string value)
63
/// <returns></returns>
64
internal static bool GetDomainSidMapping(string key, out string value)
65
{
66
- if (CacheInstance != null) return CacheInstance.MachineSidCache.TryGetValue(key, out value);
+ if (CacheInstance != null) return CacheInstance.SIDToDomainCache.TryGetValue(key, out value);
67
value = null;
68
return false;
69
}
0 commit comments