X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ztest%2Fread-marc.c;h=09fecc7dd3f5a7bda3db21826ff42353cfd86e84;hb=cad33850686850356e9c7da4591abf9cab3193a2;hp=da7f0a74875b00ff6388e0f48955385ac1cfae83;hpb=2788a4851b551e1a3efb320a2878b809f2d8a9d7;p=yaz-moved-to-github.git diff --git a/ztest/read-marc.c b/ztest/read-marc.c index da7f0a7..09fecc7 100644 --- a/ztest/read-marc.c +++ b/ztest/read-marc.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -1578,6 +1578,9 @@ char *dummy_marc_record (int num, ODR odr) inf = fopen ("dummy-records", "r"); if (!inf) { /* file not there. Get them from fixed array */ + if (num < 1) + return 0; + return marc_records[(num-1) % 24]; if (num < 1 || num > 24) return 0; return marc_records[num-1]; @@ -1619,6 +1622,7 @@ char *dummy_xml_record (int num, ODR odr) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab