summary refs log tree commit diff stats
path: root/src/fe-gtk/fe-gtk.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2013-01-08 13:09:33 -0800
committerTingPing <tingping@tingping.se>2013-01-08 13:09:33 -0800
commitc8419ae43a3384da2ffbc30f855eaf45b79c883e (patch)
tree286916393bf0e7835da0d7debc472b6e6adedb5c /src/fe-gtk/fe-gtk.c
parent0213f21a46001cedd8b1c2d5e362b359214636d8 (diff)
parentccc82895edfd1a0c0e7f8d4c18dc2dac720881e8 (diff)
Merge pull request #359 from RichardHitt/master
Overhaul of URL detection, includes nick, channel, etc
Diffstat (limited to 'src/fe-gtk/fe-gtk.c')
-rw-r--r--src/fe-gtk/fe-gtk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c
index 9f6c439a..2767fc52 100644
--- a/src/fe-gtk/fe-gtk.c
+++ b/src/fe-gtk/fe-gtk.c
@@ -1059,7 +1059,7 @@ static void
 fe_open_url_locale (const char *url)
 {
 	/* the http:// part's missing, prepend it, otherwise it won't always work */
-	if (strchr (url, ':') == NULL && url_check_word (url, strlen (url)) != WORD_PATH)
+	if (strchr (url, ':') == NULL && url_check_word (url) != WORD_PATH)
 	{
 		url = g_strdup_printf ("http://%s", url);
 		fe_open_url_inner (url);