From: Sebastian Hammer Date: Mon, 31 Jul 1995 14:34:26 +0000 (+0000) Subject: Fixed bug in process_searchResponse (numberOfRecordsReturned). X-Git-Tag: YAZ.1.8~943 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=a54b78d4dfd37879e595070471ee69ab9dba64f1 Fixed bug in process_searchResponse (numberOfRecordsReturned). --- diff --git a/server/seshigh.c b/server/seshigh.c index bce072b..34fb3ac 100644 --- a/server/seshigh.c +++ b/server/seshigh.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: seshigh.c,v $ - * Revision 1.39 1995-06-27 13:21:00 quinn + * Revision 1.40 1995-07-31 14:34:26 quinn + * Fixed bug in process_searchResponse (numberOfRecordsReturned). + * + * Revision 1.39 1995/06/27 13:21:00 quinn * SUTRS support * * Revision 1.38 1995/06/19 12:39:11 quinn @@ -935,9 +938,9 @@ static Z_APDU *response_searchRequest(association *assoc, request *reqb, } else { - int toget; + static int toget; Z_ElementSetNames *setnames; - int presst = 0; + static int presst = 0; resp.records = 0; resp.resultCount = &bsrt->hits;