X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Fliblutil%2Flockf.c;h=2a801ba6d1751ab79c2569ceafe0b8f3410c0842;hb=c8c34cdd43d3603f3b64a56841b4425379c98f45;hp=60047ffef9381d33c2bfde1d51f6fb1f50b88d92;hpb=0e2af54a3ffdeebe3901370683be56fcc53023b0;p=openldap diff --git a/libraries/liblutil/lockf.c b/libraries/liblutil/lockf.c index 60047ffef9..2a801ba6d1 100644 --- a/libraries/liblutil/lockf.c +++ b/libraries/liblutil/lockf.c @@ -1,12 +1,16 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2002 The OpenLDAP Foundation, Redwood City, California, USA +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2011 The OpenLDAP Foundation. * All rights reserved. * - * Redistribution and use in source and binary forms are permitted only - * as authorized by the OpenLDAP Public License. A copy of this - * license is available at http://www.OpenLDAP.org/license.html or - * in file LICENSE in the top-level directory of the distribution. + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ /* @@ -29,12 +33,12 @@ #undef LOCK_API -#if HAVE_LOCKF && defined(F_LOCK) +#if defined(HAVE_LOCKF) && defined(F_LOCK) # define USE_LOCKF 1 # define LOCK_API "lockf" #endif -#if !defined(LOCK_API) && HAVE_FCNTL +#if !defined(LOCK_API) && defined(HAVE_FCNTL) # ifdef HAVE_FCNTL_H # include # endif @@ -44,8 +48,8 @@ # endif #endif -#if !defined(LOCK_API) && HAVE_FLOCK -# if HAVE_SYS_FILE_H +#if !defined(LOCK_API) && defined(HAVE_FLOCK) +# ifdef HAVE_SYS_FILE_H # include # endif # define USE_FLOCK 1