X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Flockutil.c;h=12821b36631b1f3ade45841400d4676d1e092c9d;hb=d66990c38540b6196ede05d4b5636a9b51609134;hp=db8c1482f0d1909d82db55cbe089970d7bc00516;hpb=5402489b101b792e481ffad68ee0e7c449012fb4;p=idzebra-moved-to-github.git diff --git a/index/lockutil.c b/index/lockutil.c index db8c148..12821b3 100644 --- a/index/lockutil.c +++ b/index/lockutil.c @@ -1,10 +1,26 @@ -/* - * Copyright (C) 1994-2002, Index Data - * 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.17 2002-08-02 19:26:55 adam Exp $ + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 + Index Data Aps + +This file is part of the Zebra server. + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Zebra; see the file LICENSE.zebra. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. +*/ + + #include #include #include @@ -61,7 +77,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 +92,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) {