X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fcompare.c;h=e0fe80dd38fc126255de542345028af2e4e87034;hb=6f632af4132d81e2c70466b539349b19c5d46f69;hp=ce850217bcdc7a3374cf661ce6693b241856d8ce;hpb=4b3396f5fd1d1ace77c2a2a6845fa959e14cf380;p=openldap diff --git a/libraries/libldap/compare.c b/libraries/libldap/compare.c index ce850217bc..e0fe80dd38 100644 --- a/libraries/libldap/compare.c +++ b/libraries/libldap/compare.c @@ -9,6 +9,10 @@ * * compare.c */ +/* + * Portions Copyright (C) The Internet Society (1997) + * ASN.1 fragments are from RFC 2251; see RFC for full legal notices. + */ /* The compare request looks like this: * CompareRequest ::= SEQUENCE { @@ -54,6 +58,7 @@ ldap_compare_ext( { int rc; BerElement *ber; + ber_int_t id; #ifdef NEW_LOGGING LDAP_LOG ( OPERATION, ENTRY, "ldap_compare\n", 0, 0, 0 ); @@ -76,9 +81,11 @@ ldap_compare_ext( return( LDAP_NO_MEMORY ); } - if ( ber_printf( ber, "{it{s{sON}N}", /* '}' */ - ++ld->ld_msgid, - LDAP_REQ_COMPARE, dn, attr, bvalue ) == -1 ) + LDAP_NEXT_MSGID(ld, id); + rc = ber_printf( ber, "{it{s{sON}N}", /* '}' */ + id, + LDAP_REQ_COMPARE, dn, attr, bvalue ); + if ( rc == -1 ) { ld->ld_errno = LDAP_ENCODING_ERROR; ber_free( ber, 1 ); @@ -99,7 +106,7 @@ ldap_compare_ext( /* send the message */ - *msgidp = ldap_send_initial_request( ld, LDAP_REQ_COMPARE, dn, ber ); + *msgidp = ldap_send_initial_request( ld, LDAP_REQ_COMPARE, dn, ber, id ); return ( *msgidp < 0 ? ld->ld_errno : LDAP_SUCCESS ); }