X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fdelete.c;h=16e768cb534e7f4ac9cec5f0e1fd27e5242dd88a;hb=2dfd312fa12a765a5ad311f6c9bf8dce76a63155;hp=cde4632db44e7bb0c8e6a255f9e075cb5b61a678;hpb=3c598e89fb34a892d369a138daa8c3314294493c;p=openldap diff --git a/libraries/libldap/delete.c b/libraries/libldap/delete.c index cde4632db4..16e768cb53 100644 --- a/libraries/libldap/delete.c +++ b/libraries/libldap/delete.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2004 The OpenLDAP Foundation. + * Copyright 1998-2005 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -59,11 +59,7 @@ ldap_delete_ext( BerElement *ber; ber_int_t id; -#ifdef NEW_LOGGING - LDAP_LOG ( OPERATION, ENTRY, "ldap_delete_ext\n", 0,0,0 ); -#else Debug( LDAP_DEBUG_TRACE, "ldap_delete_ext\n", 0, 0, 0 ); -#endif assert( ld != NULL ); assert( LDAP_VALID( ld ) ); @@ -151,11 +147,7 @@ ldap_delete( LDAP *ld, LDAP_CONST char *dn ) * DelRequet ::= DistinguishedName, */ -#ifdef NEW_LOGGING - LDAP_LOG ( OPERATION, ENTRY, "ldap_delete\n", 0,0,0 ); -#else Debug( LDAP_DEBUG_TRACE, "ldap_delete\n", 0, 0, 0 ); -#endif return ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS ? msgid : -1 ;