From: Adam Dickmeiss Date: Wed, 4 Aug 2010 08:55:29 +0000 (+0200) Subject: yaz_oi_get_facetlist_oid: odr=0 for yaz_oi_update X-Git-Tag: v4.0.12~9^2~4 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=0ca041667b871556ef285fe708cf70c6acef64a7 yaz_oi_get_facetlist_oid: odr=0 for yaz_oi_update This is because we do not want otherinformation entries to be created by this call. --- diff --git a/src/otherinfo.c b/src/otherinfo.c index 52f6c9a..b022460 100644 --- a/src/otherinfo.c +++ b/src/otherinfo.c @@ -204,7 +204,7 @@ Z_FacetList *yaz_oi_get_facetlist_oid ( { Z_External *z_external = 0; Z_OtherInformationUnit *oi = - yaz_oi_update(otherInformation, odr, oid, categoryValue, delete_flag); + yaz_oi_update(otherInformation, 0, oid, categoryValue, delete_flag); if (!oi) return 0; z_external = oi->information.externallyDefinedInfo;