From: Adam Dickmeiss Date: Fri, 28 Feb 2003 15:59:02 +0000 (+0000) Subject: database case insensitive X-Git-Tag: YAZ.2.0.1~52 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=9dcf8b86675f48ecc89588960ec2b7a785aa05bc;hp=6cb2907ac3f225846d8deaa0aea4772e539617cd database case insensitive --- diff --git a/ztest/ztest.c b/ztest/ztest.c index 7d497df..7274130 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.55 2003-02-20 15:14:10 adam Exp $ + * $Id: ztest.c,v 1.56 2003-02-28 15:59:02 adam Exp $ */ /* @@ -13,9 +13,8 @@ #include #include +#include #include -#include - #include Z_GenericRecord *dummy_grs_record (int num, ODR o); @@ -35,7 +34,7 @@ int ztest_search (void *handle, bend_search_rr *rr) rr->errcode = 23; return 0; } - if (strcmp (rr->basenames[0], "Default")) + if (yaz_matchstr (rr->basenames[0], "Default")) { rr->errcode = 109; rr->errstring = rr->basenames[0];