Explorar o código

fix UTF8 not found in android

Use UTF-8

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
Thomas Guillem %!s(int64=10) %!d(string=hai) anos
pai
achega
620027a660
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      src/smb_utils.c

+ 3 - 1
src/smb_utils.c

@@ -35,8 +35,10 @@
 
 
 static const char *current_encoding()
 static const char *current_encoding()
 {
 {
-#if defined( __APPLE__ ) || !HAVE_LANGINFO_H
+#if defined( __APPLE__ )
     return ("UTF8");
     return ("UTF8");
+#elif !HAVE_LANGINFO_H
+    return ("UTF-8");
 #else
 #else
     static int locale_set = 0;
     static int locale_set = 0;