From d750b3fd513b20eed07ec3d18a188aad398da471 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 19 Jan 2026 11:14:40 +1100 Subject: [PATCH] acl: fixed ACL ID mapping for non-root closes issue #618 --- acls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acls.c b/acls.c index bd119e8ee..4d67ff4d1 100644 --- a/acls.c +++ b/acls.c @@ -713,7 +713,7 @@ static uchar recv_ida_entries(int f, ida_entries *ent) else id = recv_group_name(f, id, NULL); } else if (access & NAME_IS_USER) { - if (inc_recurse && am_root && !numeric_ids) + if (inc_recurse && !numeric_ids) id = match_uid(id); } else { if (inc_recurse && (!am_root || !numeric_ids))