confile_utils: cleanup lxc_free_networks()

parent 899d65a1
...@@ -460,9 +460,9 @@ bool lxc_remove_nic_by_idx(struct lxc_conf *conf, unsigned int idx) ...@@ -460,9 +460,9 @@ bool lxc_remove_nic_by_idx(struct lxc_conf *conf, unsigned int idx)
void lxc_free_networks(struct lxc_list *networks) void lxc_free_networks(struct lxc_list *networks)
{ {
struct lxc_list *cur, *next; struct lxc_list *cur, *next;
struct lxc_netdev *netdev;
lxc_list_for_each_safe(cur, networks, next) { lxc_list_for_each_safe (cur, networks, next) {
struct lxc_netdev *netdev = cur->elem;
netdev = cur->elem; netdev = cur->elem;
lxc_free_netdev(netdev); lxc_free_netdev(netdev);
free(cur); free(cur);
...@@ -472,7 +472,6 @@ void lxc_free_networks(struct lxc_list *networks) ...@@ -472,7 +472,6 @@ void lxc_free_networks(struct lxc_list *networks)
lxc_list_init(networks); lxc_list_init(networks);
} }
static struct lxc_veth_mode { static struct lxc_veth_mode {
char *name; char *name;
int mode; int mode;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment