Skip to content

Commit

Permalink
[mms_task_encode] strcasecmp -> g_ascii_strcasecmp
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Mar 31, 2014
1 parent e380a2d commit 3f6071d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mms-lib/src/mms_task_encode.c
Expand Up @@ -422,7 +422,7 @@ mms_task_encode_generate_path(
}
if (known_ext) {
const char* ext = strrchr(file, '.');
if (!ext || strcasecmp(ext, known_ext)) {
if (!ext || g_ascii_strcasecmp(ext, known_ext)) {
file = tmpfile = g_strconcat(file, known_ext, NULL);
}
}
Expand Down

0 comments on commit 3f6071d

Please sign in to comment.