mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -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
This commit is contained in:
parent
14c2e0a0c5
commit
50565cf514
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