sssd/0002-sysdb-enumpwent-replacement.patch
Iker Pedrosa 609764b7ba Rebase to sssd-2.9.9
Resolves: RHEL-173741 - SSSD Rebase for RHEL 9.9
Resolves: RHEL-173740 - CVE-2026-6245 sssd: out-of-bounds read in the sssd
Resolves: RHEL-150439 - Poor performance of `BE_REQ_INITGROUPS` handling by 'sssd_be' (LDAP RFC2307, no nested groups)
Resolves: RHEL-143416 - Performance impact with enumerate in SSSD > 2.7.3
Resolves: RHEL-152067 - [RFE] SSSD PAM: Support Microsoft AD PKINIT authentication indicator (ms-pkca) for pam_gssapi_indicators_map
Resolves: RHEL-173742 - Man page update: man sssd_krb5_localauth_plugin – Missing disable = an2ln
Resolves: RHEL-173743 - Concurrent child processes trigger unnecessarily backtrace
Resolves: RHEL-173744 - Detect foreign security principals in AD group members and silently ignore them
Resolves: RHEL-156519 - GDM Support for IdM IdP feature and MFA [SSSD]
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
2026-05-06 16:31:56 +02:00

14 lines
503 B
Diff

diff --git a/src/providers/files/files_ops.c b/src/providers/files/files_ops.c
index 556d56d50..610bd6c91 100644
--- a/src/providers/files/files_ops.c
+++ b/src/providers/files/files_ops.c
@@ -492,7 +492,7 @@ static const char **get_cached_user_names(TALLOC_CTX *mem_ctx,
const char **user_names = NULL;
unsigned c = 0;
- ret = sysdb_enumpwent(mem_ctx, dom, &res);
+ ret = sysdb_enumpwent_filter(mem_ctx, dom, NULL, NULL, NULL, &res);
if (ret != EOK) {
goto done;
}