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:
parent
09e5f17b5d
commit
8fe004e98e
|
@ -80,9 +80,9 @@ const char *
|
|||
GetFSCharset()
|
||||
{
|
||||
#ifdef HAVE_GLIB
|
||||
return fs_charset.empty() ? "utf-8" : fs_charset.c_str();
|
||||
return fs_charset.empty() ? "UTF-8" : fs_charset.c_str();
|
||||
#else
|
||||
return "utf-8";
|
||||
return "UTF-8";
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue