core: fix parent/master confusion in some argument names

It's the parent, not the master, that we care about here.
This commit is contained in:
Dan Williams
2012-02-22 23:40:18 -06:00
parent 51edc6ae97
commit 57b77b10b6
4 changed files with 9 additions and 9 deletions

View File

@@ -1028,8 +1028,8 @@ nm_utils_is_uuid (const char *str)
}
char *
nm_utils_new_vlan_name (const char *master_iface, guint32 vlan_id)
nm_utils_new_vlan_name (const char *parent_iface, guint32 vlan_id)
{
return g_strdup_printf ("%s.%d", master_iface, vlan_id);
return g_strdup_printf ("%s.%d", parent_iface, vlan_id);
}