X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fmain.c;h=001d99b050628e0f450d022d77eed040c0c05f9b;hb=ddb47a9bace6ee7942e358a017bb5426a8135334;hp=553e280e83d4a56e99e8ec8ea41aeda9211107ad;hpb=55a416d894dd90b1d5f083f6a9a280986f4b9774;p=idzebra-moved-to-github.git diff --git a/index/main.c b/index/main.c index 553e280..001d99b 100644 --- a/index/main.c +++ b/index/main.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: main.c,v $ - * Revision 1.30 1995-12-12 16:00:59 adam + * Revision 1.31 1996-01-08 19:15:46 adam + * New input filter that works! + * + * Revision 1.30 1995/12/12 16:00:59 adam * System call sync(2) used after update/commit. * Locking (based on fcntl) uses F_EXLCK and F_SHLCK instead of F_WRLCK * and F_RDLCK. @@ -160,7 +163,7 @@ int main (int argc, char **argv) " -g Index files according to group settings.\n" " -d Records belong to Z39.50 database .\n" " -m Use before flushing keys to disk.\n" - " -n Don't use commit system\n" + " -n Don't use shadow system\n" " -v Set logging to .\n"); exit (1); } @@ -190,14 +193,13 @@ int main (int argc, char **argv) else if (!strcmp (arg, "commit")) { zebraIndexLock (1); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) bf_cache (1); else { logf (LOG_FATAL, "Cannot perform commit"); - logf (LOG_FATAL, "No commit area defined " - "in the configuration file"); + logf (LOG_FATAL, "No shadow area defined"); exit (1); } if (bf_commitExists ()) @@ -219,7 +221,7 @@ int main (int argc, char **argv) else if (!strcmp (arg, "stat") || !strcmp (arg, "status")) { zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) { bf_cache (1); @@ -238,7 +240,7 @@ int main (int argc, char **argv) struct recordGroup rGroup; zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval && !disableCommit) { bf_cache (1);