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

If dn2id returns ID but id2entry returns NULL, log it.

Assume entry was deleted from underneath the dn2entry call,  hence
processing is same as if NOID had been returned.
parent 4863d980
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,14 @@ dn2entry(
return( e );
}
if ( id != NOID ) {
Debug(LDAP_DEBUG_ANY,
"dn2entry_%s: no entry for valid id (%lu), dn \"%s\"\n",
rw ? "w" : "r", id, dn);
/* must have been deleted from underneath us */
/* treat as if NOID was found */
}
/* stop when we get to the suffix */
if ( be_issuffix( be, dn ) ) {
return( NULL );
......
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