mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Instead of doing an no-op (|= 0), actually clear the flags in
acl_clear_flags_np. MFC after: 2 weeks
This commit is contained in:
parent
8c092157f4
commit
34103b3cac
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287093
@ -71,7 +71,7 @@ acl_clear_flags_np(acl_flagset_t flagset_d)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
*flagset_d |= 0;
|
||||
*flagset_d = 0;
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user