From 5f949beb951c8d18af090766801368bf3cf99a20 Mon Sep 17 00:00:00 2001 From: thepeople Date: Thu, 8 May 2008 01:06:46 +0000 Subject: [PATCH] fixed another bug.. now v060 Signed-off-by: Michael Vogt git-svn-id: svn://svn.openwrt.org/openwrt/packages@11067 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/bemused/patches/100-iconv.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/utils/bemused/patches/100-iconv.patch b/utils/bemused/patches/100-iconv.patch index ea97ff5ae..3f60494c3 100644 --- a/utils/bemused/patches/100-iconv.patch +++ b/utils/bemused/patches/100-iconv.patch @@ -11,3 +11,16 @@ if (iconv_value == (size_t) -1) { error ("ICONV ERROR3: failed to convert string, error: %d\n", errno); return "ICONV ERROR3"; +--- bemused-mpd-r059/mpdctrl.orig 2008-04-23 11:53:58.000000000 +0200 ++++ bemused-mpd-r059/mpdctrl.c 2008-04-23 14:36:34.000000000 +0200 +@@ -160,8 +160,8 @@ + } + + /* OpenWRT needs a type cast */ +- /* iconv_value = iconv(i, (const char **)&p1, &fromlen, &p2, &tolen); */ +- iconv_value = iconv(i, &p1, &fromlen, &p2, &tolen); ++ iconv_value = iconv(i, (const char **)&p1, &fromlen, &p2, &tolen); ++ /* iconv_value = iconv(i, &p1, &fromlen, &p2, &tolen); */ + if (iconv_value == (size_t) -1) { + error ("ICONV ERROR3: failed to convert string, error: %d\n", errno); + return "ICONV ERROR3";