summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/providers/ldap/sdap.c')
-rw-r--r--src/providers/ldap/sdap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/providers/ldap/sdap.c b/src/providers/ldap/sdap.c
index 8ebf1ea96..77aba64bc 100644
--- a/src/providers/ldap/sdap.c
+++ b/src/providers/ldap/sdap.c
@@ -561,10 +561,11 @@ errno_t sdap_parse_deref(TALLOC_CTX *mem_ctx,
"Dereferenced DN: %s\n", orig_dn);
if (!dref->attrVals) {
- DEBUG(SSSDBG_MINOR_FAILURE,
- "Dereferenced entry [%s] has no attributes\n",
+ DEBUG(SSSDBG_FUNC_DATA,
+ "Dereferenced entry [%s] has no attributes, skipping\n",
orig_dn);
- ret = EINVAL;
+ *_res = NULL;
+ ret = EOK;
goto done;
}