Commit 8fe004e9 authored by Max Kellermann's avatar Max Kellermann

fs/Charset: use "UTF-8" instead of "utf-8" as the default value

The upper-case name seems to be the canonical one.
parent 09e5f17b
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment