aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-url.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-url.c')
-rw-r--r--camel/camel-url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-url.c b/camel/camel-url.c
index 64abd76265..c0544dde11 100644
--- a/camel/camel-url.c
+++ b/camel/camel-url.c
@@ -79,7 +79,7 @@ camel_url_new_with_base (CamelURL *base, const char *url_string)
if (p > url_string && *p == ':') {
url->protocol = g_strndup (url_string, p - url_string);
- g_strdown (url->protocol);
+ g_ascii_strdown (url->protocol, -1);
url_string = p + 1;
}