Skip to content
Snippets Groups Projects
Commit 2c90f72a authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add comment regarding last commit

parent 30fdb0e0
No related branches found
No related tags found
No related merge requests found
......@@ -337,6 +337,12 @@ ldap_parse_intermediate (
tag = ber_peek_tag( ber, &len );
/*
* NOTE: accept intermediate and extended response tag values
* as older versions of slapd(8) incorrectly used extended
* response tags.
* Should be removed when 2.2 is moved to Historic.
*/
if( tag == LDAP_TAG_IM_RES_OID || tag == LDAP_TAG_EXOP_RES_OID ) {
/* we have a resoid */
if( ber_scanf( ber, "a", &resoid ) == LBER_ERROR ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment