summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crypto/src/x509/store/X509CertStoreSelector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/x509/store/X509CertStoreSelector.cs b/crypto/src/x509/store/X509CertStoreSelector.cs
index 30cd44a8e..54ae923a9 100644
--- a/crypto/src/x509/store/X509CertStoreSelector.cs
+++ b/crypto/src/x509/store/X509CertStoreSelector.cs
@@ -291,7 +291,7 @@ namespace Org.BouncyCastle.X509.Store
 		protected internal bool MatchesIssuer(X509CertStoreSelector other) => IssuersMatch(issuer, other.issuer);
 
 		protected internal bool MatchesSerialNumber(X509CertStoreSelector other) =>
-			Objects.Equals(serialNumber, other.SerialNumber);
+			Objects.Equals(serialNumber, other.serialNumber);
 
         protected internal bool MatchesSubjectKeyIdentifier(X509CertStoreSelector other) =>
 			Arrays.AreEqual(subjectKeyIdentifier, other.subjectKeyIdentifier);