aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-sasl-digest-md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-sasl-digest-md5.c')
-rw-r--r--camel/camel-sasl-digest-md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-sasl-digest-md5.c b/camel/camel-sasl-digest-md5.c
index b526ff47e7..8f444250f2 100644
--- a/camel/camel-sasl-digest-md5.c
+++ b/camel/camel-sasl-digest-md5.c
@@ -366,7 +366,7 @@ decode_data_type (DataType *dtype, const char *name)
int i;
for (i = 0; dtype[i].name; i++) {
- if (!strcasecmp (dtype[i].name, name))
+ if (!g_ascii_strcasecmp (dtype[i].name, name))
break;
}
@@ -473,7 +473,7 @@ parse_server_challenge (const char *tokens, gboolean *abort)
break;
case DIGEST_STALE:
PARANOID (digest_abort (&got_stale, abort));
- if (!strcasecmp (param->value, "true"))
+ if (!g_ascii_strcasecmp (param->value, "true"))
challenge->stale = TRUE;
else
challenge->stale = FALSE;