From: Adam Dickmeiss Date: Mon, 16 Mar 1998 12:21:15 +0000 (+0000) Subject: Fixed problem with tag names that weren't set to the right value X-Git-Tag: YAZ.1.8~502 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=90b607d71dc080e2d6d9bd9670d8e20431c9f2a0 Fixed problem with tag names that weren't set to the right value when wildcards were used. --- diff --git a/retrieval/d1_grs.c b/retrieval/d1_grs.c index d17ca3c..599bb61 100644 --- a/retrieval/d1_grs.c +++ b/retrieval/d1_grs.c @@ -1,10 +1,14 @@ /* - * Copyright (c) 1995-1997, Index Data. + * Copyright (c) 1995-1998, Index Data. * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: d1_grs.c,v $ - * Revision 1.13 1998-02-11 11:53:35 adam + * Revision 1.14 1998-03-16 12:21:15 adam + * Fixed problem with tag names that weren't set to the right value + * when wildcards were used. + * + * Revision 1.13 1998/02/11 11:53:35 adam * Changed code so that it compiles as C++. * * Revision 1.12 1997/11/24 11:33:56 adam @@ -266,11 +270,12 @@ static Z_TaggedElement *nodetotaggedelement(data1_handle dh, data1_node *n, { char *tagstr; - if (tag) /* well-known tag */ - tagstr = tag->value.string; - else /* tag local to this file */ - tagstr = n->u.tag.tag; - + if (n->which == DATA1N_tag) + tagstr = n->u.tag.tag; /* tag at node */ + else if (tag) + tagstr = tag->value.string; /* no take from well-known */ + else + tagstr = "?"; /* no tag at all! */ res->tagValue->which = Z_StringOrNumeric_string; res->tagValue->u.string = (char *)odr_malloc(o, strlen(tagstr)+1); strcpy(res->tagValue->u.string, tagstr);