Fix build without CONFIG_FULL_DYNAMIC_VLAN

This commit is contained in:
Jouni Malinen 2010-04-17 21:01:35 +03:00
parent 5008cb5e55
commit 2de5a860a3
1 changed files with 4 additions and 0 deletions

View File

@ -764,7 +764,9 @@ static int vlan_dynamic_add(struct hostapd_data *hapd,
return -1;
}
}
#ifdef CONFIG_FULL_DYNAMIC_VLAN
ifconfig_up(vlan->ifname);
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
}
vlan = vlan->next;
@ -865,7 +867,9 @@ struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
n->next = hapd->conf->vlan;
hapd->conf->vlan = n;
#ifdef CONFIG_FULL_DYNAMIC_VLAN
ifconfig_up(n->ifname);
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
return n;
}