From 8fe004e98e968e69d5e3f61ffce6715f73408294 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Sun, 23 Feb 2014 20:02:14 +0100
Subject: [PATCH] fs/Charset: use "UTF-8" instead of "utf-8" as the default
 value

The upper-case name seems to be the canonical one.
---
 src/fs/Charset.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/fs/Charset.cxx b/src/fs/Charset.cxx
index 232a9a23c..2d289c3b8 100644
--- a/src/fs/Charset.cxx
+++ b/src/fs/Charset.cxx
@@ -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
 }