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:
delphij 2015-09-08 01:44:37 +00:00
parent 1b3405f899
commit edf4da8597

View File

@ -71,7 +71,7 @@ acl_clear_flags_np(acl_flagset_t flagset_d)
return (-1);
}
*flagset_d |= 0;
*flagset_d = 0;
return (0);
}