Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2006-09-20 21:53:13 +0400
committerAtsushi Eno <atsushieno@gmail.com>2006-09-20 21:53:13 +0400
commit8e3f64f95e24629dfd7063d4b198d8aee6286fe4 (patch)
tree5b582ea999edf516c35128df82e2bca54a6d5633 /mcs/class/System/System.Security.Cryptography.X509Certificates
parente5d0846dd271ac62c33c615ef2c659e7dd71e723 (diff)
2006-09-20 Atsushi Enomoto <atsushi@ximian.com>
* X509Certificate2.cs : in .ctor(X509Certificate) call base copy .ctor() as well. Fixed bug #79455. svn path=/trunk/mcs/; revision=65731
Diffstat (limited to 'mcs/class/System/System.Security.Cryptography.X509Certificates')
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog5
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509Certificate2.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
index 5db316c0af2..1fc522e4ef7 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-20 Atsushi Enomoto <atsushi@ximian.com>
+
+ * X509Certificate2.cs : in .ctor(X509Certificate) call base copy .ctor()
+ as well. Fixed bug #79455.
+
2006-09-12 Sebastien Pouliot <sebastien@ximian.com>
* PublicKey.cs: Never return the private key in the Key property, even
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Certificate2.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Certificate2.cs
index 0b55688e11a..46a15d9e07e 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Certificate2.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Certificate2.cs
@@ -116,6 +116,7 @@ namespace System.Security.Cryptography.X509Certificates {
}
public X509Certificate2 (X509Certificate certificate)
+ : base (certificate)
{
_cert = new MX.X509Certificate (base.GetRawCertData ());
}