X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftst_retrieval.c;h=8ed48ea5251457d8be4aae816c685dfbadaacb33;hb=401da56d4a26f687cd42024bdef6f29a29bb7663;hp=f49c2c2b7c2cb20573d56826ec5e8209d7b79320;hpb=728ffb55e072933a1208780272e545c51f080e90;p=yaz-moved-to-github.git diff --git a/test/tst_retrieval.c b/test/tst_retrieval.c index f49c2c2..8ed48ea 100644 --- a/test/tst_retrieval.c +++ b/test/tst_retrieval.c @@ -2,7 +2,7 @@ * Copyright (C) 2005-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: tst_retrieval.c,v 1.9 2007-01-03 08:42:16 adam Exp $ + * $Id: tst_retrieval.c,v 1.10 2007-03-19 14:40:07 adam Exp $ * */ #include @@ -76,12 +76,12 @@ int conv_configure_test(const char *xmlstring, const char *expect_error, if (!p) { - if (expect_error && !strcmp(wrbuf_buf(w), expect_error)) + if (expect_error && !strcmp(wrbuf_cstr(w), expect_error)) ret = 1; else { ret = 0; - printf("%.*s\n", wrbuf_len(w), wrbuf_buf(w)); + printf("%s\n", wrbuf_cstr(w)); } } else @@ -100,7 +100,7 @@ int conv_configure_test(const char *xmlstring, const char *expect_error, ret = 1; } } - wrbuf_free(w, 1); + wrbuf_destroy(w); return ret; }