Code

Corrected a spelling error strup => strdup.
authorKalle Wallin <kaw@linux.se>
Sun, 28 Mar 2004 21:00:23 +0000 (21:00 +0000)
committerKalle Wallin <kaw@linux.se>
Sun, 28 Mar 2004 21:00:23 +0000 (21:00 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@525 09075e82-0dd4-0310-85a5-a0d7c8717e4f

support.c

index 2b5d46ce8b97e68eb33736e9c87194b2df565543..488b4cc532f84a6f6bf864f4dabcc95f2520fb91 100644 (file)
--- a/support.c
+++ b/support.c
@@ -158,7 +158,7 @@ char *
 utf8_to_locale(char *str)
 {
   if( noconvert )
-    return g_strup(str);
+    return g_strdup(str);
   return g_locale_from_utf8(str, -1, NULL, NULL, NULL);
 }
 
@@ -166,7 +166,7 @@ char *
 locale_to_utf8(char *str)
 {
   if( noconvert )
-    return g_strup(str);
+    return g_strdup(str);
   return g_locale_to_utf8(str, -1, NULL, NULL, NULL);
 }