summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-05-04 16:18:54 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-05-04 16:18:54 +0700
commit6447126a722f82f685aab4b0e3ec26d2b0a095c4 (patch)
tree7726ffc3f36c0698707a0b431de5c669f04cf519 /crypto/src
parentFixed a comment to refer to correct PKCS (diff)
downloadBouncyCastle.NET-ed25519-6447126a722f82f685aab4b0e3ec26d2b0a095c4.tar.xz
Reference field directly
Diffstat (limited to 'crypto/src')
-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);