]> spindle.queued.net Git - midori/commitdiff
Don't search if there's a colon (:) in a domain
authorBrandon Mercer <yourcomputerpal@gmail.com>
Thu, 16 Oct 2008 18:29:58 +0000 (20:29 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 16 Oct 2008 18:29:58 +0000 (20:29 +0200)
midori/sokoke.c

index 6ab9dcaee30e2783c46609addb1ea1ccb73328e5..cd5f55189af16662cd9e6cf3999242bc9c9fbd9e 100644 (file)
@@ -111,7 +111,8 @@ sokoke_magic_uri (const gchar* uri,
     if (!strstr (uri, "://"))
     {
         /* Do we have a domain, ip address or localhost? */
-        if (strchr (uri, '.') != NULL || !strcmp (uri, "localhost"))
+        if (strchr (uri, '.') != NULL || strchr (uri, ':')
+            || !strcmp (uri, "localhost"))
             return g_strconcat ("http://", uri, NULL);
         /* We don't want to search? So return early. */
         if (!search_engines)