X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=servers%2Fslurpd%2Flock.c;h=9ef0fd7f78a48fc0b536539e350611a51d36da48;hb=93d5e01390d334e2173d33932a76287959a745aa;hp=bce1e949781fd43b48a01a38f23e8fd23b1ae8b3;hpb=3c598e89fb34a892d369a138daa8c3314294493c;p=openldap diff --git a/servers/slurpd/lock.c b/servers/slurpd/lock.c index bce1e94978..9ef0fd7f78 100644 --- a/servers/slurpd/lock.c +++ b/servers/slurpd/lock.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2004 The OpenLDAP Foundation. + * Copyright 1998-2006 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -62,13 +62,8 @@ lock_fopen( snprintf( buf, sizeof buf, "%s.lock", fname ); if ( (*lfp = fopen( buf, "w" )) == NULL ) { -#ifdef NEW_LOGGING - LDAP_LOG ( SLURPD, ERR, "lock_fopen: " - "Error: could not open \"%s\"\n", buf, 0, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Error: could not open \"%s\"\n", buf, 0, 0 ); -#endif return( NULL ); } @@ -77,13 +72,8 @@ lock_fopen( /* open the log file */ if ( (fp = fopen( fname, type )) == NULL ) { -#ifdef NEW_LOGGING - LDAP_LOG ( SLURPD, ERR, "lock_fopen: " - "Error: could not open \"%s\"\n", fname, 0, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Error: could not open \"%s\"\n", fname, 0, 0 ); -#endif ldap_unlockf( fileno(*lfp) ); fclose( *lfp ); *lfp = NULL; @@ -101,11 +91,13 @@ lock_fclose( FILE *lfp ) { + int rc = fclose( fp ); + /* unlock */ ldap_unlockf( fileno(lfp) ); fclose( lfp ); - return( fclose( fp ) ); + return( rc ); } @@ -121,15 +113,9 @@ acquire_lock( ) { if (( *rfp = lock_fopen( file, "r+", lfp )) == NULL ) { -#ifdef NEW_LOGGING - LDAP_LOG ( SLURPD, ERR, "acquire_lock: " - "Error: acquire_lock(%ld): Could not acquire lock on \"%s\"\n", - (long) getpid(), file, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Error: acquire_lock(%ld): Could not acquire lock on \"%s\"\n", (long) getpid(), file, 0); -#endif return( -1 ); } return( 0 ); @@ -149,15 +135,9 @@ relinquish_lock( ) { if ( lock_fclose( rfp, lfp ) == EOF ) { -#ifdef NEW_LOGGING - LDAP_LOG ( SLURPD, ERR, "relinguish_lock: " - "Error: relinquish_lock (%ld): Error closing \"%s\"\n", - (long) getpid(), file, 0 ); -#else Debug( LDAP_DEBUG_ANY, "Error: relinquish_lock (%ld): Error closing \"%s\"\n", (long) getpid(), file, 0 ); -#endif return( -1 ); } return( 0 );