2004-03-09 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 9 Mar 2004 15:50:47 +0000 (15:50 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 9 Mar 2004 15:50:47 +0000 (15:50 -0000)
* KeyInfoX509Data.cs : trivial local var name fix.

svn path=/trunk/mcs/; revision=23831

mcs/class/System.Security/System.Security.Cryptography.Xml/ChangeLog
mcs/class/System.Security/System.Security.Cryptography.Xml/KeyInfoX509Data.cs

index 63086e9bcc4224e2ef5030056730d95996b6f921..14fd63eae502906692b3eabb0e7bbfd01808168d 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-09  Atsushi Enomoto <atsushi@ximian.com>
+
+       * KeyInfoX509Data.cs : trivial local var name fix.
+
 2004-03-09  Atsushi Enomoto <atsushi@ximian.com>
 
        * KeyInfoX509Data.cs,
index f281b237f0c2b7f9a33f14badd115c834bda84e6..a2a5324b79ac8ab5596d7ac9788e045b5ddc197c 100644 (file)
@@ -199,10 +199,10 @@ namespace System.Security.Cryptography.Xml {
                                }
                        }
                        // only one <X509CRL> 
-                       XmlElement x509crl = XmlSignature.GetChildElement (element, XmlSignature.ElementNames.X509CRL, XmlSignature.NamespaceURI);
-                       if (x509crl != null) {
-                               x509crl = Convert.FromBase64String (x509crl.InnerXml);
+                       XmlElement x509el = XmlSignature.GetChildElement (element, XmlSignature.ElementNames.X509CRL, XmlSignature.NamespaceURI);
+                       if (x509el != null) {
+                               x509crl = Convert.FromBase64String (x509el.InnerXml);
                        }
                }
        }
-}
\ No newline at end of file
+}