X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fadd.c;h=35b0cb6ed1a77134af61b214ab1a127efb3fdb0a;hb=0ea43c9d7d2fbf08b2078931bebfcaf443230878;hp=1ce57eba7f6f95d4fa09a3796ea268aa5f8febf1;hpb=d88bc7a8b5c5ddc376d8badeb59a8841d0ff2e22;p=openldap diff --git a/libraries/libldap/add.c b/libraries/libldap/add.c index 1ce57eba7f..35b0cb6ed1 100644 --- a/libraries/libldap/add.c +++ b/libraries/libldap/add.c @@ -1,13 +1,23 @@ +/* add.c */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2002 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-2005 The OpenLDAP Foundation. + * All rights reserved. * - * add.c + * 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 + * . + */ +/* Portions Copyright (c) 1990 Regents of the University of Michigan. + * All rights reserved. + */ +/* Portions Copyright (C) The Internet Society (1997). + * ASN.1 fragments are from RFC 2251; see RFC for full legal notices. */ /* @@ -98,12 +108,9 @@ ldap_add_ext( { BerElement *ber; int i, rc; + ber_int_t id; -#ifdef NEW_LOGGING - LDAP_LOG (( "add", LDAP_LEVEL_ENTRY, "ldap_add_ext\n" )); -#else Debug( LDAP_DEBUG_TRACE, "ldap_add_ext\n", 0, 0, 0 ); -#endif assert( ld != NULL ); assert( LDAP_VALID( ld ) ); assert( dn != NULL ); @@ -119,8 +126,9 @@ ldap_add_ext( return ld->ld_errno; } + LDAP_NEXT_MSGID(ld, id); rc = ber_printf( ber, "{it{s{", /* '}}}' */ - ++ld->ld_msgid, LDAP_REQ_ADD, dn ); + id, LDAP_REQ_ADD, dn ); if ( rc == -1 ) { ld->ld_errno = LDAP_ENCODING_ERROR; @@ -163,7 +171,7 @@ ldap_add_ext( } /* send the message */ - *msgidp = ldap_send_initial_request( ld, LDAP_REQ_ADD, dn, ber ); + *msgidp = ldap_send_initial_request( ld, LDAP_REQ_ADD, dn, ber, id ); if(*msgidp < 0) return ld->ld_errno;