X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ztest%2Fztest.c;h=4795ee65852f04f7d6671ca4de47e62f56ffc28d;hb=582597c00fa0cab08133741f281b816719445198;hp=c7e0679a4eb1b2daf8a27a69be1c6d88df36a4d5;hpb=6bffc65936ba634077acb9f42ace217bc4737539;p=yaz-moved-to-github.git diff --git a/ztest/ztest.c b/ztest/ztest.c index c7e0679..4795ee6 100644 --- a/ztest/ztest.c +++ b/ztest/ztest.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2003, Index Data. * See the file LICENSE for details. * - * $Id: ztest.c,v 1.57 2003-03-24 22:26:51 adam Exp $ + * $Id: ztest.c,v 1.59 2003-12-29 14:54:33 adam Exp $ */ /* @@ -386,6 +386,10 @@ int ztest_esrequest (void *handle, bend_esrequest_rr *rr) } } } + else if (rr->esr->taskSpecificParameters->which == Z_External_update0) + { + yaz_log(LOG_LOG, "Received DB Update (version 0)"); + } else { yaz_log (LOG_WARN, "Unknown Extended Service(%d)", @@ -598,12 +602,15 @@ int ztest_scan(void *handle, bend_scan_rr *q) static int ztest_explain(void *handle, bend_explain_rr *rr) { - rr->explain_buf = "\n" - "\t\n" - "\t\tlocalhost\n" - "\t\t210\n" - "\t\n" - "\n"; + if (rr->database && !strcmp(rr->database, "Default")) + { + rr->explain_buf = "\n" + "\t\n" + "\t\tlocalhost\n" + "\t\t210\n" + "\t\n" + "\n"; + } return 0; }