X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Flockutil.c;h=4c7cbf7848e738c0f3a0f76bb866450d9fa50cd2;hb=1d09966e51904c44ed82eaa920ffc9fbcc087541;hp=12821b36631b1f3ade45841400d4676d1e092c9d;hpb=896c0427df9d8eff5de6a1735dcd992e067df844;p=idzebra-moved-to-github.git diff --git a/index/lockutil.c b/index/lockutil.c index 12821b3..4c7cbf7 100644 --- a/index/lockutil.c +++ b/index/lockutil.c @@ -1,6 +1,6 @@ -/* $Id: lockutil.c,v 1.17 2002-08-02 19:26:55 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 - Index Data Aps +/* $Id: lockutil.c,v 1.21 2005-06-14 20:28:54 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -30,7 +30,8 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #ifdef WIN32 #include #include -#else +#endif +#if HAVE_UNISTD_H #include #endif @@ -97,7 +98,7 @@ ZebraLockHandle zebra_lock_create (const char *dir, if (h->fd == -1) { if (h->excl_flag <= 1) - logf (LOG_WARN|LOG_ERRNO, "open %s", fname); + yaz_log (YLOG_WARN|YLOG_ERRNO, "open %s", fname); xfree (h); h = 0; } @@ -116,7 +117,7 @@ void zebra_lock_destroy (ZebraLockHandle h) void zebra_lock_prefix (Res res, char *path) { - char *lock_dir = res_get_def (res, "lockDir", ""); + const char *lock_dir = res_get_def (res, "lockDir", ""); strcpy (path, lock_dir); if (*path && path[strlen(path)-1] != '/')