Commit f6c87e29 authored by gagan%netscape.com's avatar gagan%netscape.com
Browse files

Fix for bug 27930. Support for IPv6.

parent 6b99f091
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2326,7 +2326,8 @@ NS_IMETHODIMP nsDocShell::CreateFixupURI(const PRUnichar* aStringURI,
   if (colon == -1 || fSlash == -1 || (fSlash > -1) && (colon > fSlash)) {
      if (colon < (((PRInt32)uriString.Length())-1)) {
         if (colon != -1) port = uriString.CharAt(colon+1);
         if (colon == -1 || uriString.IsDigit(port)) {
         if (colon == -1 || uriString.IsDigit(port) ||
                 uriString.CharAt(0) == '[') {
            // find host name
            PRInt32 hostPos = uriString.FindCharInSet("./:");
            if (hostPos == -1)