1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-19 06:50:07 +03:00

Feature #687: Fix wrong ACL rule matching

This commit is contained in:
Carlos Martín 2011-07-04 11:33:37 +02:00
parent 2d46c59812
commit 90b6004caa

View File

@ -244,7 +244,7 @@ bool AclManager::match_rules(
long long resource_gid_mask)
{
bool auth;
bool auth = false;
ostringstream oss;
multimap<long long, AclRule *>::iterator it;
@ -288,7 +288,7 @@ bool AclManager::match_rules(
unlock();
return false;
return auth;
}
/* -------------------------------------------------------------------------- */