X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fretrieval.c;h=c433d611758700c62781523319645449e2e67207;hp=d86b92843c87b5ddcf061f6a7c25b9202f569400;hb=65f297c24c59e95f860f29928d3588c5dc98ba4c;hpb=750bc4f7094d6de74c64cfd028d66ae1261be1d1;ds=sidebyside diff --git a/src/retrieval.c b/src/retrieval.c index d86b928..c433d61 100644 --- a/src/retrieval.c +++ b/src/retrieval.c @@ -2,7 +2,7 @@ * Copyright (C) 2005-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: retrieval.c,v 1.6 2006-05-08 11:58:37 adam Exp $ + * $Id: retrieval.c,v 1.7 2006-05-08 19:48:26 adam Exp $ */ /** * \file retrieval.c @@ -242,6 +242,7 @@ int yaz_retrieval_request(yaz_retrieval_t p, int syntax_matches = 0; int schema_matches = 0; + wrbuf_rewind(p->wr_error); if (!el) return 0; for(; el; el = el->next) @@ -255,6 +256,8 @@ int yaz_retrieval_request(yaz_retrieval_t p, schema_ok = 1; if (!schema) schema_ok = 1; + if (schema && !el->schema) + schema_ok = 1; if (syntax && el->syntax && !oid_oidcmp(syntax, el->syntax)) syntax_ok = 1; @@ -278,13 +281,16 @@ int yaz_retrieval_request(yaz_retrieval_t p, return 0; } } - if (syntax_matches && !schema_matches) - return 1; - if (!syntax_matches && schema_matches) + if (!syntax_matches && syntax) + { + wrbuf_printf(p->wr_error, "%s", syntax); return 2; - if (!syntax_matches && !schema_matches) - return 3; - return 4; + } + if (schema) + wrbuf_printf(p->wr_error, "%s", schema); + if (!schema_matches) + return 1; + return 3; } const char *yaz_retrieval_get_error(yaz_retrieval_t p)