Flush
authorMiguel de Icaza <miguel@gnome.org>
Fri, 16 Jul 2010 15:17:05 +0000 (15:17 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Fri, 16 Jul 2010 15:17:05 +0000 (15:17 -0000)
svn path=/trunk/mcs/; revision=160486

mcs/class/System/Mono.Util/Punycode.cs
mcs/class/System/System.Net/IPAddress.cs

index 7ad097a1591eb2de01adf4d4baf2c8d6769a09ec..74bd442a7ee52a1f2520ea36376d5de2e77007aa 100644 (file)
@@ -2,9 +2,6 @@
 // Based on the C implementation from the RFC:
 // http://tools.ietf.org/html/rfc3492
 //
-// See the following url for documentation:
-//     http://www.mono-project.com/Mono_DataConvert
-//
 // Compilation Options:
 //     MONO_PUNYCODE_PUBLIC:
 //         Makes the class public instead of the default internal.
index 121b29ccf8841db185c3018abd980c4cf2b9691e..1a5d37ed5765761b5f2b0c71ef4e160c6439cb60 100644 (file)
@@ -254,7 +254,7 @@ namespace System.Net {
                                long a = 0;
                                long val = 0;
                                for (int i = 0; i < ips.Length; i++) {
-                                       string subnet = ips [i];
+                                       string subnet = ips [i];
                                        if ((3 <= subnet.Length && subnet.Length <= 4) &&
                                            (subnet [0] == '0') && (subnet [1] == 'x' || subnet [1] == 'X')) {
                                                if (subnet.Length == 3)