cluster: Fix default privileges.

This commit is contained in:
Gunnar Beutner 2013-09-17 15:56:54 +02:00
parent 4dbc1f993b
commit 64cc137709
1 changed files with 1 additions and 1 deletions
components/cluster

View File

@ -106,7 +106,7 @@ void ClusterComponent::Start(void)
privs |= domainObj->GetPrivileges(endpoint->GetName());
}
} else {
privs = ~0;
privs = INT_MAX;
}
Log(LogDebug, "cluster", "Privileges for object '" + object->GetName() + "' of type '" + object->GetType()->GetName() + "' for instance '" + endpoint->GetName() + "' are '" + Convert::ToString(privs) + "'");