X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Flockutil.c;h=24d4d21719b8770b1ab65021d7506a4578dca3fa;hb=cc9f94a61cbd9dcc0df0cf7d0c7c41d2cec88189;hp=db8c1482f0d1909d82db55cbe089970d7bc00516;hpb=5402489b101b792e481ffad68ee0e7c449012fb4;p=idzebra-moved-to-github.git diff --git a/index/lockutil.c b/index/lockutil.c index db8c148..24d4d21 100644 --- a/index/lockutil.c +++ b/index/lockutil.c @@ -3,7 +3,7 @@ * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * - * $Id: lockutil.c,v 1.14 2002-03-21 10:25:42 adam Exp $ + * $Id: lockutil.c,v 1.16 2002-06-02 19:28:53 adam Exp $ */ #include #include @@ -61,7 +61,6 @@ char *zebra_mk_fname (const char *dir, const char *name) ZebraLockHandle zebra_lock_create (const char *dir, const char *name, int excl_flag) { - int dlen = dir ? strlen(dir) : 0; char *fname = zebra_mk_fname(dir, name); ZebraLockHandle h = (ZebraLockHandle) xmalloc (sizeof(*h)); @@ -77,7 +76,7 @@ ZebraLockHandle zebra_lock_create (const char *dir, (O_BINARY|O_CREAT|O_RDWR), 0666); #else h->fd= open (fname, ((h->excl_flag > 1) ? O_EXCL : 0)| - (O_BINARY|O_CREAT|O_RDWR|O_SYNC), 0666); + (O_BINARY|O_CREAT|O_RDWR), 0666); #endif if (h->fd == -1) {