X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fdelete.c;h=7c8763a0b44a1932deba4c01dded182c68edbd40;hb=f660d9ac14ef0a831768dd8b30e3af3561510dda;hp=8d6e482693302f8ca1abc7e65902e78ca7e2503d;hpb=844cc979285b308af5fb5b862c7cf619912c576a;p=openldap diff --git a/libraries/libldap/delete.c b/libraries/libldap/delete.c index 8d6e482693..7c8763a0b4 100644 --- a/libraries/libldap/delete.c +++ b/libraries/libldap/delete.c @@ -1,18 +1,19 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file - */ -/* Portions - * Copyright (c) 1990 Regents of the University of Michigan. - * All rights reserved. +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2012 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. * - * delete.c + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ - -/* - * A delete request looks like this: - * DelRequet ::= DistinguishedName, +/* Portions Copyright (c) 1990 Regents of the University of Michigan. + * All rights reserved. */ #include "portable.h" @@ -25,6 +26,12 @@ #include "ldap-int.h" +/* + * A delete request looks like this: + * DelRequet ::= DistinguishedName, + */ + + /* * ldap_delete_ext - initiate an ldap extended delete operation. Parameters: * @@ -49,11 +56,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 ) ); @@ -117,7 +120,7 @@ ldap_delete_ext_s( if( rc != LDAP_SUCCESS ) return( ld->ld_errno ); - if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 ) + if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res ) return( ld->ld_errno ); return( ldap_result2error( ld, res, 1 ) ); @@ -141,11 +144,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 ;