X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Flockutil.c;h=1e0eb9223c93987896f106297adcf88b5eb5bdb3;hb=b9093505b17a074e79137ed64595c8269f77d330;hp=d59067f003780c5594b7beaad2d83305a05f24bd;hpb=adc0ef50c52d332902ef92c8feb460eee55a1f05;p=idzebra-moved-to-github.git diff --git a/index/lockutil.c b/index/lockutil.c index d59067f..1e0eb92 100644 --- a/index/lockutil.c +++ b/index/lockutil.c @@ -4,7 +4,17 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: lockutil.c,v $ - * Revision 1.5 1996-03-26 16:01:13 adam + * Revision 1.8 1997-09-17 12:19:15 adam + * Zebra version corresponds to YAZ version 1.4. + * Changed Zebra server so that it doesn't depend on global common_resource. + * + * Revision 1.7 1997/09/09 13:38:08 adam + * Partial port to WIN95/NT. + * + * Revision 1.6 1996/10/29 14:08:14 adam + * Uses resource lockDir instead of lockPath. + * + * Revision 1.5 1996/03/26 16:01:13 adam * New setting lockPath: directory of various lock files. * * Revision 1.4 1995/12/13 08:46:10 adam @@ -30,17 +40,20 @@ #include #include #include +#ifdef WINDOWS +#include +#else #include +#endif -#include #include "index.h" static char *lockDir = NULL; -void zebraLockPrefix (char *pathPrefix) +void zebraLockPrefix (Res res, char *pathPrefix) { if (!lockDir) - lockDir = res_get_def (common_resource, "lockPath", ""); + lockDir = res_get_def (res, "lockDir", ""); assert (lockDir); strcpy (pathPrefix, lockDir);