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:
Max Kellermann 2014-02-23 20:02:14 +01:00
parent 09e5f17b5d
commit 8fe004e98e
1 changed files with 2 additions and 2 deletions

View File

@ -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
}