Skip to content
Snippets Groups Projects
Commit 64bda128 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

ITS#5328 - return LDAP result code from null_back_entry_get().

parent 61140d66
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,8 @@ null_back_false( Operation *op, SlapReply *rs )
/* for overlays */
int null_back_entry_get(
static int
null_back_entry_get(
Operation *op,
struct berval *ndn,
ObjectClass *oc,
......@@ -78,8 +79,10 @@ int null_back_entry_get(
int rw,
Entry **ent )
{
*ent = NULL;
return 1;
assert( *ent == NULL );
/* don't admit the object isn't there */
return oc || at ? LDAP_NO_SUCH_ATTRIBUTE : LDAP_BUSY;
}
......
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