makefs/zfs: Don't set ZFS_NO_EXECS_DENIED in file flags

This flag was leftover from testing and should have been removed.

PR:		274938
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2023-11-08 07:00:43 -05:00
parent 14c2e0a0c5
commit 50565cf514

View file

@ -403,8 +403,8 @@ fs_populate_sattrs(struct fs_populate_arg *arg, const fsnode *cur,
}
daclcount = nitems(aces);
flags = ZFS_ACL_TRIVIAL | ZFS_ACL_AUTO_INHERIT | ZFS_NO_EXECS_DENIED |
ZFS_ARCHIVE | ZFS_AV_MODIFIED; /* XXX-MJ */
flags = ZFS_ACL_TRIVIAL | ZFS_ACL_AUTO_INHERIT | ZFS_ARCHIVE |
ZFS_AV_MODIFIED;
gen = 1;
gid = sb->st_gid;
mode = sb->st_mode;