X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zlint%2Ftest-search-01.cpp;h=e44fce4bfe7c6d2b3eddf4e6ebf431068998fd52;hb=0084c40d8bc6babaeb0b833b12d9cd625c807525;hp=7f3adabd427d47a2df518044f7b1c743e8332b87;hpb=e19d9fe1d9e538d9978cfcb3c2685ba0f234e6b5;p=yazpp-moved-to-github.git diff --git a/zlint/test-search-01.cpp b/zlint/test-search-01.cpp index 7f3adab..e44fce4 100644 --- a/zlint/test-search-01.cpp +++ b/zlint/test-search-01.cpp @@ -1,15 +1,17 @@ -/* - * Copyright (c) 2004, Index Data. +/* This file is part of the yazpp toolkit. + * Copyright (C) 1998-2012 Index Data and Mike Taylor * See the file LICENSE for details. - * - * $Id: test-search-01.cpp,v 1.6 2005-08-11 18:53:01 adam Exp $ */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include #include +#include static const char *try_query[] = { "@attr 1=4 petersson", @@ -131,8 +133,9 @@ Zlint_code Zlint_test_search_01::sendTest(Zlint *z) z->msg_check_for("record syntax %s", try_syntax[m_record_syntax_no]); pr->preferredRecordSyntax = - yaz_str_to_z3950oid(z->odr_encode(), CLASS_RECSYN, - try_syntax[m_record_syntax_no]); + yaz_string_to_oid_odr(yaz_oid_std(), + CLASS_RECSYN, try_syntax[m_record_syntax_no], + z->odr_encode()); z->send_Z_PDU(apdu, &len); return TEST_CONTINUE; } @@ -143,7 +146,7 @@ Zlint_code Zlint_test_search_01::sendTest(Zlint *z) { z->msg_check_for("sort %s", try_sort[m_sort_no]); - char *setstring = "default"; + const char *setstring = "default"; int len; Z_SortRequest *sr = apdu->u.sortRequest; @@ -221,8 +224,9 @@ Zlint_code Zlint_test_search_01::recv_gdu(Zlint *z, Z_GDU *gdu) { Z_External *ext = sr->records->u.databaseOrSurDiagnostics->records[0]->u.databaseRecord; Odr_oid *expectRecordSyntax = - yaz_str_to_z3950oid(z->odr_decode(), CLASS_RECSYN, - try_syntax[m_record_syntax_no]); + yaz_string_to_oid_odr( + yaz_oid_std(), CLASS_RECSYN, + try_syntax[m_record_syntax_no], z->odr_decode()); if (oid_oidcmp(expectRecordSyntax, ext->direct_reference)) { @@ -277,6 +281,7 @@ Zlint_code Zlint_test_search_01::recv_fail(Zlint *z, int reason) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab