Skip to content

Commit

Permalink
fix wrong arguments order in CrlCacheExpired call (dotnet#110457)
Browse files Browse the repository at this point in the history
Arguments nextUpdate and verificationTime should be passed in different order
  • Loading branch information
Alex4414 authored and hez2010 committed Dec 14, 2024
1 parent 9652163 commit d97abb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private static bool AddCachedCrlCore(string crlFile, SafeX509StoreHandle store,
{
if (OpenSslX509ChainEventSource.Log.IsEnabled())
{
OpenSslX509ChainEventSource.Log.CrlCacheExpired(nextUpdate, verificationTime);
OpenSslX509ChainEventSource.Log.CrlCacheExpired(verificationTime, nextUpdate);
}

return false;
Expand Down

0 comments on commit d97abb1

Please sign in to comment.