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:
Xin LI 2015-08-24 04:49:20 +00:00
parent 8c092157f4
commit 34103b3cac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287093

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);
}