network: fix grammar

parent 56ea6817
...@@ -523,7 +523,7 @@ static int netdev_configure_server_macvlan(struct lxc_handler *handler, struct l ...@@ -523,7 +523,7 @@ static int netdev_configure_server_macvlan(struct lxc_handler *handler, struct l
goto on_error; goto on_error;
} }
DEBUG("Instantiated macvlan \"%s\" with ifindex is %d and mode %d", DEBUG("Instantiated macvlan \"%s\" with ifindex %d and mode %d",
peer, netdev->ifindex, netdev->priv.macvlan_attr.mode); peer, netdev->ifindex, netdev->priv.macvlan_attr.mode);
return 0; return 0;
...@@ -671,7 +671,7 @@ static int netdev_configure_server_ipvlan(struct lxc_handler *handler, struct lx ...@@ -671,7 +671,7 @@ static int netdev_configure_server_ipvlan(struct lxc_handler *handler, struct lx
goto on_error; goto on_error;
} }
DEBUG("Instantiated ipvlan \"%s\" with ifindex is %d and mode %d", peer, DEBUG("Instantiated ipvlan \"%s\" with ifindex %d and mode %d", peer,
netdev->ifindex, netdev->priv.macvlan_attr.mode); netdev->ifindex, netdev->priv.macvlan_attr.mode);
return 0; return 0;
...@@ -745,7 +745,7 @@ static int netdev_configure_server_vlan(struct lxc_handler *handler, struct lxc_ ...@@ -745,7 +745,7 @@ static int netdev_configure_server_vlan(struct lxc_handler *handler, struct lxc_
} }
} }
DEBUG("Instantiated vlan \"%s\" with ifindex is \"%d\"", peer, DEBUG("Instantiated vlan \"%s\" with ifindex \"%d\"", peer,
netdev->ifindex); netdev->ifindex);
return 0; return 0;
...@@ -819,7 +819,7 @@ static int netdev_configure_server_phys(struct lxc_handler *handler, struct lxc_ ...@@ -819,7 +819,7 @@ static int netdev_configure_server_phys(struct lxc_handler *handler, struct lxc_
return -1; return -1;
} }
DEBUG("Instantiated phys \"%s\" with ifindex is \"%d\"", netdev->link, DEBUG("Instantiated phys \"%s\" with ifindex \"%d\"", netdev->link,
netdev->ifindex); netdev->ifindex);
return 0; return 0;
......
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