MFC r287093:
Instead of doing an no-op (|= 0), actually clear the flags in acl_clear_flags_np. Reported by: Pascal Drecker <pascal freebsd drecker com>
This commit is contained in:
parent
1b3405f899
commit
edf4da8597
@ -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