}
else
{
- resource_parent = g_hash_table_lookup (priv->roles, resource_id_parent);
+ resource_parent = g_hash_table_lookup (priv->resources, resource_id_parent);
if (resource_parent != NULL)
{
resource->parents = g_list_append (resource->parents, resource_parent);
{
if (!xmlNodeIsText (current_parent) &&
xmlStrcmp (current_parent->name, "parent") == 0)
- {
- prop = g_strstrip (g_strdup ((gchar *)xmlGetProp (current_parent, "id")));
- if (g_strcmp0 (prop, "") != 0)
+ {
+ prop = g_strstrip (g_strdup ((gchar *)xmlGetProp (current_parent, "id")));
+ if (g_strcmp0 (prop, "") != 0)
{
autoz_add_parent_to_role (autoz, irole, autoz_get_role_from_id (autoz, prop));
}
- }
+ }
current_parent = current_parent->next;
}
}
{
if (!xmlNodeIsText (current_parent) &&
xmlStrcmp (current_parent->name, "parent") == 0)
- {
- prop = g_strstrip (g_strdup ((gchar *)xmlGetProp (current_parent, "id")));
- if (g_strcmp0 (prop, "") != 0)
+ {
+ prop = g_strstrip (g_strdup ((gchar *)xmlGetProp (current_parent, "id")));
+ if (g_strcmp0 (prop, "") != 0)
{
autoz_add_parent_to_resource (autoz, iresource, autoz_get_resource_from_id (autoz, prop));
}
- }
+ }
current_parent = current_parent->next;
}
}