X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Frecord_render.c;h=c48406c4c75d6d132c54a94fe791741068541f71;hp=06c11846d8598ce37854d76150c0e982c3163cbe;hb=2465d6db8c6b6ee61f63369d1914ac592141a9c5;hpb=f70bb871b56cdbc9dab3685b7a7d2090c3258b5e diff --git a/src/record_render.c b/src/record_render.c index 06c1184..c48406c 100644 --- a/src/record_render.c +++ b/src/record_render.c @@ -34,7 +34,7 @@ static yaz_iconv_t iconv_create_charset(const char *record_charset, yaz_iconv_t cd = 0; char *from_set1 = 0; char *from_set2 = 0; - char *to_set = 0; + char *to_set = "utf-8"; if (record_charset && *record_charset) { char *cp = charset_buf; @@ -62,11 +62,11 @@ static yaz_iconv_t iconv_create_charset(const char *record_charset, } if (from_set1) - cd = yaz_iconv_open(to_set ? to_set : "UTF-8", from_set1); + cd = yaz_iconv_open(to_set, from_set1); if (cd2) { if (from_set2) - *cd2 = yaz_iconv_open(to_set ? to_set : "UTF-8", from_set2); + *cd2 = yaz_iconv_open(to_set, from_set2); else *cd2 = 0; }