summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2017-02-16 13:30:18 +0100
committerSumit Bose <sbose@redhat.com>2017-02-23 11:37:09 +0100
commit5c568890aa99045f42fe5adc04a411bbc09e6f24 (patch)
treed10a9fc636fc9222b4bce5fc63eabb7e24e7e194
parent53edff9c3066ce8004c979fe00a635d429c098fc (diff)
downloadsssd-5c568890aa99045f42fe5adc04a411bbc09e6f24.tar.gz
sssd-5c568890aa99045f42fe5adc04a411bbc09e6f24.tar.xz
sssd-5c568890aa99045f42fe5adc04a411bbc09e6f24.zip
cache_req: allow multiple matches for searches by certificate
-rw-r--r--src/responder/common/cache_req/plugins/cache_req_user_by_cert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/responder/common/cache_req/plugins/cache_req_user_by_cert.c b/src/responder/common/cache_req/plugins/cache_req_user_by_cert.c
index cead8524b..f237c8d0f 100644
--- a/src/responder/common/cache_req/plugins/cache_req_user_by_cert.c
+++ b/src/responder/common/cache_req/plugins/cache_req_user_by_cert.c
@@ -80,8 +80,8 @@ const struct cache_req_plugin cache_req_user_by_cert = {
.parse_name = false,
.ignore_default_domain = false,
.bypass_cache = false,
- .only_one_result = true,
- .search_all_domains = false,
+ .only_one_result = false,
+ .search_all_domains = true,
.require_enumeration = false,
.allow_missing_fqn = true,
.allow_switch_to_upn = false,