From 967a1293ee622053b05995d46d63085f6aa23204 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 12 Mar 2007 16:16:49 +0000 Subject: [PATCH] Use wrbuf_puts rather than wrbuf_printf for GRS-1 display. --- src/grs1disp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/grs1disp.c b/src/grs1disp.c index a2f32bb..ddf2928 100644 --- a/src/grs1disp.c +++ b/src/grs1disp.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: grs1disp.c,v 1.5 2007-01-03 08:42:15 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; -- 1.7.10.4