X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmarcdisp.c;h=38ac2ca2175057cbfd6cbc3748a7b4edff9af773;hb=9510c6c592b84da4a6b2616a61f0cebfce5a1c87;hp=a544fcf90c9244b1a1206895510326168c1c2261;hpb=80b89a67e69a53fb3dc7b58c5abc9bf99af93139;p=yaz-moved-to-github.git diff --git a/src/marcdisp.c b/src/marcdisp.c index a544fcf..38ac2ca 100644 --- a/src/marcdisp.c +++ b/src/marcdisp.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. * - * $Id: marcdisp.c,v 1.5 2004-03-16 13:15:58 adam Exp $ + * $Id: marcdisp.c,v 1.6 2004-08-07 08:07:00 adam Exp $ */ #if HAVE_CONFIG_H @@ -134,7 +134,13 @@ int yaz_marc_decode_wrbuf (yaz_marc_t mt, const char *buf, int bsize, WRBUF wr) wr, "\n" " "); - marc_cdata(mt, buf, 24, wr); +#if 1 + marc_cdata(mt, buf, 9, wr); + marc_cdata(mt, "a", 1, wr); /* set leader to signal unicode */ + marc_cdata(mt, buf+10, 14, wr); +#else + marc_cdata(mt, buf, 24, wr); /* leave header as is .. */ +#endif wrbuf_printf(wr, "\n"); break; }