X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fyaz-my-client.cpp;h=ec970ad4c5888211593af22b8aa54f51d93e241f;hb=7a9cf0a84f1169b52469f736be7e98e7440eeff4;hp=48e0aadcbfc5df3fbd51adc1cb839d6e501ecf96;hpb=71130e9f57a28722e39b6c8cf9700b9e42fe9d7c;p=yazpp-moved-to-github.git diff --git a/src/yaz-my-client.cpp b/src/yaz-my-client.cpp index 48e0aad..ec970ad 100644 --- a/src/yaz-my-client.cpp +++ b/src/yaz-my-client.cpp @@ -3,7 +3,10 @@ * See the file LICENSE for details. * * $Log: yaz-my-client.cpp,v $ - * Revision 1.4 2001-04-05 15:12:24 adam + * Revision 1.5 2001-04-10 10:48:08 adam + * Fixed problem where proxy could cash bad result sets. + * + * Revision 1.4 2001/04/05 15:12:24 adam * WIN32 updates. * * Revision 1.3 2001/04/05 13:09:44 adam @@ -496,10 +499,12 @@ void MyClient::recv_searchResponse(Z_SearchResponse *searchResponse) if (!*searchResponse->searchStatus) { printf ("Fail\n"); - return; } - printf ("Ok\n"); - printf ("Hits: %d\n", *searchResponse->resultCount); + else + { + printf ("Ok\n"); + printf ("Hits: %d\n", *searchResponse->resultCount); + } recv_records (searchResponse->records); }