diff --git a/ChangeLog b/ChangeLog index 4a2dae549b..4d88b80e95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,8 @@ 2005-09-09 Tor Lillqvist - * gimptool-win32.c.in (get_prefix, maybe_append_exe): Practice - what I preach and use g_ascii_strcasecmp() instead of - g_strcasecmp(). + * gimptool-win32.c.in (get_prefix, maybe_append_exe) + * libgimpbase/gimpdatafiles.c (is_script): Practice what I preach + and use g_ascii_strcasecmp() instead of g_strcasecmp(). 2005-09-09 Sven Neumann diff --git a/libgimpbase/gimpdatafiles.c b/libgimpbase/gimpdatafiles.c index bdce26359e..d883674878 100644 --- a/libgimpbase/gimpdatafiles.c +++ b/libgimpbase/gimpdatafiles.c @@ -77,7 +77,7 @@ is_script (const gchar *filename) i = 0; while (exts[i] != NULL) { - if (g_strcasecmp (ext, exts[i]) == 0) + if (g_ascii_strcasecmp (ext, exts[i]) == 0) return TRUE; i++; }