summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/ldap_id.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2011-04-15 09:19:40 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-04-15 11:58:58 -0400
commitb4abe4088ceec0189f97b1a0e3fce37c23066206 (patch)
tree9c2a2869474dc185d288e4ab1c2f21d41daa2d17 /src/providers/ldap/ldap_id.c
parentee5d3b527b4f7272e59fa630f4511aa1e84bf674 (diff)
downloadsssd-b4abe4088ceec0189f97b1a0e3fce37c23066206.tar.gz
sssd-b4abe4088ceec0189f97b1a0e3fce37c23066206.tar.xz
sssd-b4abe4088ceec0189f97b1a0e3fce37c23066206.zip
Fix regressions in the negative cachesssd-1.5.1-30.el6
Do not throw a DP error when failing to delete a nonexistent entity Add debug logging to the negative cache Fix a regression with the negative cache in multi-domain configurations Fix regression where nonexistent entries were never added to the negative cache
Diffstat (limited to 'src/providers/ldap/ldap_id.c')
-rw-r--r--src/providers/ldap/ldap_id.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/providers/ldap/ldap_id.c b/src/providers/ldap/ldap_id.c
index 776df1ac2..a6fb05bd9 100644
--- a/src/providers/ldap/ldap_id.c
+++ b/src/providers/ldap/ldap_id.c
@@ -219,7 +219,7 @@ static void users_get_done(struct tevent_req *subreq)
case BE_FILTER_NAME:
ret = sysdb_delete_user(state, state->sysdb,
state->domain, state->name, 0);
- if (ret) {
+ if (ret != EOK && ret != ENOENT) {
tevent_req_error(req, ret);
return;
}
@@ -234,7 +234,7 @@ static void users_get_done(struct tevent_req *subreq)
ret = sysdb_delete_user(state, state->sysdb,
state->domain, NULL, uid);
- if (ret) {
+ if (ret != EOK && ret != ENOENT) {
tevent_req_error(req, ret);
return;
}
@@ -453,7 +453,7 @@ static void groups_get_done(struct tevent_req *subreq)
case BE_FILTER_NAME:
ret = sysdb_delete_group(state, state->sysdb,
state->domain, state->name, 0);
- if (ret) {
+ if (ret != EOK && ret != ENOENT) {
tevent_req_error(req, ret);
return;
}
@@ -468,7 +468,7 @@ static void groups_get_done(struct tevent_req *subreq)
ret = sysdb_delete_group(state, state->sysdb,
state->domain, NULL, gid);
- if (ret) {
+ if (ret != EOK && ret != ENOENT) {
tevent_req_error(req, ret);
return;
}