diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-01-08 04:31:44 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-01-08 04:31:44 +0000 |
commit | 438c1add9de7aff5968add3b9e02fac30a62e74a (patch) | |
tree | 3d4a982db74f0c6d7da66f8bf5e746217f8f9545 /src/path.c | |
parent | 90b4af03410cb151225853c458546abe6d696f1c (diff) | |
download | mpd-438c1add9de7aff5968add3b9e02fac30a62e74a.tar.gz mpd-438c1add9de7aff5968add3b9e02fac30a62e74a.tar.xz mpd-438c1add9de7aff5968add3b9e02fac30a62e74a.zip |
Convert log messages sent to stdout to the current locale's charset.
git-svn-id: https://svn.musicpd.org/mpd/trunk@5227 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/path.c')
-rw-r--r-- | src/path.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/path.c b/src/path.c index 35836ea46..21597f5e6 100644 --- a/src/path.c +++ b/src/path.c @@ -143,14 +143,10 @@ void initPaths(void) } closedir(dir); - if (fsCharsetParam) { + if (fsCharsetParam) charset = xstrdup(fsCharsetParam->value); - } else if ((charset = getLocaleCharset())) { - if (*charset == '\0') - charset = NULL; - else - charset = xstrdup(charset); - } + else if ((charset = getLocaleCharset())) + charset = xstrdup(charset); if (charset) { setFsCharset(charset); |