Revert "CRED: Fix regression in cap_capable() as shown up by sys_faccessat() [ver #2]"

This reverts commit 14eaddc967.

David has a better version to come.
This commit is contained in:
James Morris 2009-01-07 09:21:54 +11:00
parent 76f7ba35d4
commit 29881c4502
9 changed files with 35 additions and 129 deletions

View file

@ -308,7 +308,7 @@ int capable(int cap)
BUG();
}
if (security_capable(cap) == 0) {
if (has_capability(current, cap)) {
current->flags |= PF_SUPERPRIV;
return 1;
}