aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-html-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-html-parser.c')
-rw-r--r--camel/camel-html-parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-html-parser.c b/camel/camel-html-parser.c
index 31c0aee15b..17bf52f04c 100644
--- a/camel/camel-html-parser.c
+++ b/camel/camel-html-parser.c
@@ -162,7 +162,7 @@ const char *camel_html_parser_attr(CamelHTMLParser *hp, const char *name)
CamelHTMLParserPrivate *p = hp->priv;
for (i=0;i<p->attrs->len;i++) {
- if (!strcasecmp(((GString *)p->attrs->pdata[i])->str, name)) {
+ if (!g_ascii_strcasecmp(((GString *)p->attrs->pdata[i])->str, name)) {
return ((GString *)p->values->pdata[i])->str;
}
}