mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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 (cherry picked from commit 50565cf514d32ee02a24f420551c7e65631b0716)
This commit is contained in:
parent
00c537586f
commit
a8043cc0d4
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue