Avoid printf %.*s for arbitrary strings
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 27 Apr 2011 13:33:17 +0000 (15:33 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 27 Apr 2011 13:33:17 +0000 (15:33 +0200)
commitcee361c60ab22518b0864d46d2c7b2b472ad797d
tree22c1c942fa8ccca95ec346ad1e418b656fc99e94
parent4f3bcae93d51a26709c12b51261c3d95af610cb2
Avoid printf %.*s for arbitrary strings

Use wrbuf_write instead of wrbuf_printf in a few places for fixed
length buffers. Use wrbuf_puts instead of wrbuf_printf when printf
is not needed. There is a problem with printf("%.*", len, buf)
when buf is in different encoding from what is given by LANG
variable.. At least when readline is in use.
src/marcdisp.c
src/querytowrbuf.c
test/test_ccl.c