diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-13 13:52:16 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-13 13:52:16 +0000 |
commit | 8c96c2d363a71ecfbadf1876ac01c16f650bc6e7 (patch) | |
tree | dee662af13bd0b0faa4802e6597025a840b41713 /src/path.c | |
parent | 4920ee719a2490b7d661d4373640e8665f696976 (diff) | |
download | mpd-8c96c2d363a71ecfbadf1876ac01c16f650bc6e7.tar.gz mpd-8c96c2d363a71ecfbadf1876ac01c16f650bc6e7.tar.xz mpd-8c96c2d363a71ecfbadf1876ac01c16f650bc6e7.zip |
rename all ascii/utf8 stuff to latin1/utf8
git-svn-id: https://svn.musicpd.org/mpd/trunk@718 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/path.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/path.c b/src/path.c index 8f4cb6911..e9031100d 100644 --- a/src/path.c +++ b/src/path.c @@ -20,7 +20,6 @@ #include "log.h" #include "charConv.h" #include "conf.h" -#include "utf8.h" #include <stdlib.h> #include <string.h> @@ -59,9 +58,6 @@ char * fsCharsetToUtf8(char * str) { free(ret); ret = NULL; } - /*if(!ret) ret = asciiStrToUtf8Dup(str);*/ - - /* if all else fails, just strdup */ return ret; } |