X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fcql2pqf.c;h=40aa034d68db58f33ecfd61765b045960870ce35;hb=301bd3892284e83875d90bd7a65f48366c81213d;hp=070e54273aa3fcf85776ddabe9b7df04e77c6951;hpb=b977948f73d07c0bf4478565f9af3497ffe862e7;p=yaz-moved-to-github.git diff --git a/util/cql2pqf.c b/util/cql2pqf.c index 070e542..40aa034 100644 --- a/util/cql2pqf.c +++ b/util/cql2pqf.c @@ -1,7 +1,10 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2011 Index Data * See the file LICENSE for details. */ +#if HAVE_CONFIG_H +#include +#endif #include #include @@ -39,6 +42,7 @@ int main(int argc, char **argv) break; case 'r': reverse = 1; + break; case 'n': iterations = atoi(arg); break; @@ -48,7 +52,10 @@ int main(int argc, char **argv) } if (!fname) usage(); - ct = cql_transform_open_fname(fname); + if (!strcmp(fname, "-")) + ct = cql_transform_create(); + else + ct = cql_transform_open_fname(fname); if (!ct) { fprintf(stderr, "failed to read properties %s\n", fname); @@ -127,6 +134,7 @@ int main(int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab