projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f70bb87
)
record_render: simplify a bit
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 21 Jun 2012 12:35:08 +0000
(14:35 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 21 Jun 2012 12:35:27 +0000
(14:35 +0200)
src/record_render.c
patch
|
blob
|
history
diff --git
a/src/record_render.c
b/src/record_render.c
index
06c1184
..
c48406c
100644
(file)
--- 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;
}