X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=dfa%2Fgrepper.c;h=baa9be7dc4be5ad37dfba35cca5d2dda0db302de;hb=2b33b395b50c562323ea2b0251f9b798cf5241d2;hp=1c515548da5a88ec6b58539c06163c717c1a2fb6;hpb=6f5101be21e854a5125b489a03814cc7509236cc;p=idzebra-moved-to-github.git diff --git a/dfa/grepper.c b/dfa/grepper.c index 1c51554..baa9be7 100644 --- a/dfa/grepper.c +++ b/dfa/grepper.c @@ -1,10 +1,26 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: grepper.c,v $ - * Revision 1.4 1995-01-24 16:00:21 adam + * Revision 1.9 2000-09-05 14:04:05 adam + * Updates for prefix 'yaz_' for YAZ log functions. + * + * Revision 1.8 1999/02/02 14:50:07 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.7 1996/10/29 13:57:24 adam + * Include of zebrautl.h instead of alexutil.h. + * + * Revision 1.6 1996/01/08 09:09:20 adam + * Function dfa_parse got 'const' string argument. + * New functions to define char mappings made public. + * + * Revision 1.5 1995/09/04 12:33:26 adam + * Various cleanup. YAZ util used instead. + * + * Revision 1.4 1995/01/24 16:00:21 adam * Added -ansi to CFLAGS. * Some changes to the dfa module. * @@ -24,7 +40,7 @@ #include #include -#include +#include #include #include "imalloc.h" @@ -326,7 +342,7 @@ static int grep_file (struct DFA *dfa, const char *fname, int range) inf = fopen (fname, "r"); if (!inf) { - log (LOG_FATAL|LOG_ERRNO, "cannot open `%s'", fname); + logf (LOG_FATAL|LOG_ERRNO, "cannot open `%s'", fname); exit (1); } } @@ -347,7 +363,7 @@ int main (int argc, char **argv) int ret; int range = 0; char *arg; - char *pattern = NULL; + const char *pattern = NULL; int no_files = 0; struct DFA *dfa = dfa_init(); @@ -376,7 +392,7 @@ int main (int argc, char **argv) } else if (ret == 'v') { - log_init (log_mask_str(arg), prog, NULL); + yaz_log_init (yaz_log_mask_str(arg), prog, NULL); } else if (ret == 's') { @@ -398,7 +414,7 @@ int main (int argc, char **argv) } else { - log (LOG_FATAL, "Unknown option '-%s'", arg); + logf (LOG_FATAL, "Unknown option '-%s'", arg); exit (1); } }