Displaying 1 result from an estimated 1 matches for "my_neg_rights".
2008 Sep 08
4
ACL plugin
...- to be precise,
the cache component of it handles them in the exact same way as it does
positive rights, thus granting rather than retracting the individual
privileges.
To fix this, go to src/plugins/acl/acl-cache.c:391. The line and the one
following it should read
p[j] |=
obj_cache->my_neg_rights[i]->mask[j];
Replace that to read
p[j] &=
~obj_cache->my_neg_rights[i]->mask[j];
I hope this information is useful.
Regards,
M. Soloviev