summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crypto/src/asn1/DLTaggedObject.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/DLTaggedObject.cs b/crypto/src/asn1/DLTaggedObject.cs
index a5135f2a5..1c5e990b4 100644
--- a/crypto/src/asn1/DLTaggedObject.cs
+++ b/crypto/src/asn1/DLTaggedObject.cs
@@ -18,7 +18,7 @@ namespace Org.BouncyCastle.Asn1
         }
 
         internal DLTaggedObject(int tagNo)
-            : base(false, tagNo, BerSequence.Empty)
+            : base(false, tagNo, DLSequence.Empty)
         {
         }
 
@@ -94,7 +94,7 @@ namespace Org.BouncyCastle.Asn1
 
         internal override Asn1Sequence RebuildConstructed(Asn1Object asn1Object)
         {
-            return new BerSequence(asn1Object);
+            return new DLSequence(asn1Object);
         }
 
         private int GetContentsLengthDL(Asn1Object baseObject, bool withBaseID)