mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-13 09:10:20 +00:00
Fix string handling for Turkish locale
This commit is contained in:
@@ -176,12 +176,12 @@ plugingui_unload (GtkWidget * wid, gpointer unused)
|
||||
|
||||
len = strlen (file);
|
||||
#ifdef WIN32
|
||||
if (len > 4 && strcasecmp (file + len - 4, ".dll") == 0)
|
||||
if (len > 4 && g_ascii_strcasecmp (file + len - 4, ".dll") == 0)
|
||||
#else
|
||||
#if defined(__hpux)
|
||||
if (len > 3 && strcasecmp (file + len - 3, ".sl") == 0)
|
||||
if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".sl") == 0)
|
||||
#else
|
||||
if (len > 3 && strcasecmp (file + len - 3, ".so") == 0)
|
||||
if (len > 3 && g_ascii_strcasecmp (file + len - 3, ".so") == 0)
|
||||
#endif
|
||||
#endif
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user