fs/Charset: use "UTF-8" instead of "utf-8" as the default value
The upper-case name seems to be the canonical one.
This commit is contained in:
@@ -80,9 +80,9 @@ const char *
|
|||||||
GetFSCharset()
|
GetFSCharset()
|
||||||
{
|
{
|
||||||
#ifdef HAVE_GLIB
|
#ifdef HAVE_GLIB
|
||||||
return fs_charset.empty() ? "utf-8" : fs_charset.c_str();
|
return fs_charset.empty() ? "UTF-8" : fs_charset.c_str();
|
||||||
#else
|
#else
|
||||||
return "utf-8";
|
return "UTF-8";
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user