X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fgrs1disp.c;h=ddf2928aaac362629c6806204890663faa20952a;hb=967a1293ee622053b05995d46d63085f6aa23204;hp=0a9df7a1cc046f91551f332ba7e256341a718f47;hpb=fb6d99a0c7e07d9cc4a315c447deaf6564a85505;p=yaz-moved-to-github.git diff --git a/src/grs1disp.c b/src/grs1disp.c index 0a9df7a..ddf2928 100644 --- a/src/grs1disp.c +++ b/src/grs1disp.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: grs1disp.c,v 1.4 2005-06-25 15:46:04 adam Exp $ + * $Id: grs1disp.c,v 1.6 2007-03-12 16:16:49 adam Exp $ */ /** @@ -66,9 +66,14 @@ static void display_grs1(WRBUF w, Z_GenericRecord *r, int level) } } else if (t->content->which == Z_ElementData_string) - wrbuf_printf(w, "%s\n", t->content->u.string); + { + wrbuf_puts(w, t->content->u.string); + wrbuf_puts(w, "\n"); + } else if (t->content->which == Z_ElementData_numeric) + { wrbuf_printf(w, "%d\n", *t->content->u.numeric); + } else if (t->content->which == Z_ElementData_oid) { int *ip = t->content->u.oid;