aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-utils.c
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@igalia.com>2012-01-23 23:40:46 +0800
committerDiego Escalante Urrelo <diegoe@igalia.com>2012-01-24 00:25:35 +0800
commit0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c (patch)
tree9ab1375542554dacf11c749e6b36fccbbe161b8c /embed/ephy-embed-utils.c
parent0257e7153ecbe593a0b13cca3ec90f9db03705e7 (diff)
downloadgsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.gz
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.bz2
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.lz
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.xz
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.tar.zst
gsoc2013-epiphany-0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c.zip
ephy-embed-utils: mailto is not a web scheme
https://bugzilla.gnome.org/show_bug.cgi?id=551857
Diffstat (limited to 'embed/ephy-embed-utils.c')
-rw-r--r--embed/ephy-embed-utils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/embed/ephy-embed-utils.c b/embed/ephy-embed-utils.c
index 2bf0e1f11..5865b5843 100644
--- a/embed/ephy-embed-utils.c
+++ b/embed/ephy-embed-utils.c
@@ -97,8 +97,7 @@ ephy_embed_utils_address_has_web_scheme (const char *address)
g_ascii_strncasecmp (address, "javascript", colonpos) &&
g_ascii_strncasecmp (address, "data", colonpos) &&
g_ascii_strncasecmp (address, "about", colonpos) &&
- g_ascii_strncasecmp (address, "gopher", colonpos) &&
- g_ascii_strncasecmp (address, "mailto", colonpos));
+ g_ascii_strncasecmp (address, "gopher", colonpos));
return has_web_scheme;
}