X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fmodrdn.c;h=246cede995f66508649cf8f2edd006ef15130ecc;hb=cdbbed6c3b6a4f0b69fab6e37c3a098ca5d12620;hp=29108a3f38d12ae98343a644aec956d95fe09f53;hpb=29d9fa20a2823c827f098d78f1ea8539d86bf4cf;p=openldap diff --git a/libraries/libldap/modrdn.c b/libraries/libldap/modrdn.c index 29108a3f38..246cede995 100644 --- a/libraries/libldap/modrdn.c +++ b/libraries/libldap/modrdn.c @@ -1,18 +1,21 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2000 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 . * - * modrdn.c - */ -/* - * Support for MODIFYDN REQUEST V3 (newSuperior) by: + * Copyright 1998-2005 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. * - * Copyright 1999, Juan C. Gomez, All rights reserved. + * 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. + */ +/* Copyright 1999, Juan C. Gomez, All rights reserved. * This software is not subject to any license of Silicon Graphics * Inc. or Purdue University. * @@ -20,6 +23,13 @@ * without restriction or fee of any kind as long as this notice * is preserved. */ +/* Portions Copyright (C) The Internet Society (1997) + * ASN.1 fragments are from RFC 2251; see RFC 2251 for full legal notices. + */ + +/* ACKNOWLEDGEMENTS: + * Juan C. Gomez + */ /* * A modify rdn request looks like this: @@ -67,14 +77,20 @@ ldap_rename( { BerElement *ber; int rc; + ber_int_t id; Debug( LDAP_DEBUG_TRACE, "ldap_rename\n", 0, 0, 0 ); + /* check client controls */ + rc = ldap_int_client_controls( ld, cctrls ); + if( rc != LDAP_SUCCESS ) return rc; + /* create a message to send */ if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) { return( LDAP_NO_MEMORY ); } + LDAP_NEXT_MSGID( ld, id ); if( newSuperior != NULL ) { /* must be version 3 (or greater) */ if ( ld->ld_version < LDAP_VERSION3 ) { @@ -82,15 +98,14 @@ ldap_rename( ber_free( ber, 1 ); return( ld->ld_errno ); } - - rc = ber_printf( ber, "{it{ssbts}", /* '}' */ - ++ld->ld_msgid, LDAP_REQ_MODDN, + rc = ber_printf( ber, "{it{ssbtsN}", /* '}' */ + id, LDAP_REQ_MODDN, dn, newrdn, (ber_int_t) deleteoldrdn, LDAP_TAG_NEWSUPERIOR, newSuperior ); } else { - rc = ber_printf( ber, "{it{ssb}", /* '}' */ - ++ld->ld_msgid, LDAP_REQ_MODDN, + rc = ber_printf( ber, "{it{ssbN}", /* '}' */ + id, LDAP_REQ_MODDN, dn, newrdn, (ber_int_t) deleteoldrdn ); } @@ -106,7 +121,7 @@ ldap_rename( return ld->ld_errno; } - rc = ber_printf( ber, /*{*/ "}" ); + rc = ber_printf( ber, /*{*/ "N}" ); if ( rc < 0 ) { ld->ld_errno = LDAP_ENCODING_ERROR; ber_free( ber, 1 ); @@ -114,7 +129,7 @@ ldap_rename( } /* send the message */ - *msgidp = ldap_send_initial_request( ld, LDAP_REQ_MODRDN, dn, ber ); + *msgidp = ldap_send_initial_request( ld, LDAP_REQ_MODRDN, dn, ber, id ); if( *msgidp < 0 ) { return( ld->ld_errno ); @@ -204,7 +219,7 @@ ldap_rename_s( return rc; } - rc = ldap_result( ld, msgid, 1, NULL, &res ); + rc = ldap_result( ld, msgid, LDAP_MSG_ALL, NULL, &res ); if( rc == -1 ) { return ld->ld_errno;