X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Flock.c;h=4688b50e3d2f35ab51a5899e57a10fd9fbdcdbb6;hb=6e602b549420181bfe6ad55d863963a5b11544d1;hp=bc8a4fc8a4089b4b28f2a92b248d155a7d90b67c;hpb=0e2af54a3ffdeebe3901370683be56fcc53023b0;p=openldap diff --git a/servers/slapd/lock.c b/servers/slapd/lock.c index bc8a4fc8a4..4688b50e3d 100644 --- a/servers/slapd/lock.c +++ b/servers/slapd/lock.c @@ -1,7 +1,7 @@ /* lock.c - routines to open and apply an advisory lock to a file */ /* $OpenLDAP$ */ /* - * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ @@ -19,6 +19,7 @@ #endif #include "slap.h" +#include FILE * lock_fopen( const char *fname, const char *type, FILE **lfp ) @@ -27,11 +28,12 @@ lock_fopen( const char *fname, const char *type, FILE **lfp ) char buf[MAXPATHLEN]; /* open the lock file */ - strcpy(slap_strcopy( buf, fname ), ".lock" ); + snprintf( buf, sizeof buf, "%s.lock", fname ); + if ( (*lfp = fopen( buf, "w" )) == NULL ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "lock_fopen: could not open lock file \"%s\".\n", buf )); + LDAP_LOG( OPERATION, ERR, + "lock_fopen: could not open lock file \"%s\".\n", buf, 0, 0); #else Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 ); #endif @@ -45,8 +47,8 @@ lock_fopen( const char *fname, const char *type, FILE **lfp ) /* open the log file */ if ( (fp = fopen( fname, type )) == NULL ) { #ifdef NEW_LOGGING - LDAP_LOG(( "operation", LDAP_LEVEL_ERR, - "lock_fopen: could not open log file \"%s\".\n", buf )); + LDAP_LOG( OPERATION, ERR, + "lock_fopen: could not open log file \"%s\".\n", buf, 0, 0); #else Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 ); #endif