core: allow VLAN ids between 1 and 4095

nm_utils_new_vlan_name() should reject the reserved VLAN id 4095, and
the test case should not test reserved values 0 and 4095.

Fixes: 778207f23e
This commit is contained in:
Beniamino Galvani
2016-01-22 11:11:59 +01:00
parent 34050e9c0b
commit 9a56fa0b3f
2 changed files with 3 additions and 2 deletions

View File

@@ -2155,7 +2155,7 @@ nm_utils_new_vlan_name (const char *parent_iface, guint32 vlan_id)
else if (vlan_id < 1000)
id_len = 4;
else {
g_return_val_if_fail (vlan_id < 4096, NULL);
g_return_val_if_fail (vlan_id < 4095, NULL);
id_len = 5;
}