1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/Asn1ObjectDescriptor.cs b/crypto/src/asn1/Asn1ObjectDescriptor.cs
index 4d25da77b..e306d827e 100644
--- a/crypto/src/asn1/Asn1ObjectDescriptor.cs
+++ b/crypto/src/asn1/Asn1ObjectDescriptor.cs
@@ -103,7 +103,7 @@ namespace Org.BouncyCastle.Asn1
{
Asn1ObjectDescriptor that = asn1Object as Asn1ObjectDescriptor;
return null != that
- && this.m_baseGraphicString.CallAsn1Equals(that.m_baseGraphicString);
+ && this.m_baseGraphicString.Equals(that.m_baseGraphicString);
}
internal static Asn1ObjectDescriptor CreatePrimitive(byte[] contents)
|