Skip to content

Commit 236417c

Browse files
committed
acl: fixed ACL ID mapping for non-root
closes issue #618
1 parent 2a97d81 commit 236417c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

acls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ static uchar recv_ida_entries(int f, ida_entries *ent)
713713
else
714714
id = recv_group_name(f, id, NULL);
715715
} else if (access & NAME_IS_USER) {
716-
if (inc_recurse && am_root && !numeric_ids)
716+
if (inc_recurse && !numeric_ids)
717717
id = match_uid(id);
718718
} else {
719719
if (inc_recurse && (!am_root || !numeric_ids))

0 commit comments

Comments
 (0)