From 0ca041667b871556ef285fe708cf70c6acef64a7 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 4 Aug 2010 10:55:29 +0200 Subject: [PATCH] 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. --- src/otherinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4