X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Ftrav.c;h=c3f6aca8de916883177764dc554dedfeec891913;hb=d23f1adde49e76cfda218d7f50ba886c16d1a044;hp=d055ad58d3fa3fe39c7f631be44d53242bf65e7d;hpb=162fa86044b5aa303c03fa26f1ecf140b34060d5;p=idzebra-moved-to-github.git diff --git a/index/trav.c b/index/trav.c index d055ad5..c3f6aca 100644 --- a/index/trav.c +++ b/index/trav.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: trav.c,v $ - * Revision 1.13 1995-11-28 09:09:46 adam + * Revision 1.14 1995-12-06 12:41:26 adam + * New command 'stat' for the index program. + * Filenames can be read from stdin by specifying '-'. + * Bug fix/enhancement of the transformation from terms to regular + * expressons in the search engine. + * + * Revision 1.13 1995/11/28 09:09:46 adam * Zebra config renamed. * Use setting 'recordId' to identify record now. * Bug fix in recindex.c: rec_release_blocks was invokeded even @@ -311,7 +317,7 @@ void repositoryUpdate (struct recordGroup *rGroup) else { strcpy (src, rGroup->path); - if (*src == '\0') + if (*src == '\0' || !strcmp (src, "-")) stdinExtractR (0, rGroup); else repositoryExtractR (0, src, rGroup); @@ -325,7 +331,7 @@ void repositoryDelete (struct recordGroup *rGroup) assert (rGroup->path); groupRes (rGroup); strcpy (src, rGroup->path); - if (*src == '\0') + if (*src == '\0' || !strcmp(src, "-")) stdinExtractR (1, rGroup); else repositoryExtractR (1, src, rGroup);