Skip to content

Commit

Permalink
network: fix grammar
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
  • Loading branch information
Christian Brauner committed Feb 26, 2021
1 parent 9dffc40 commit 4a037d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lxc/network.c
Expand Up @@ -839,7 +839,7 @@ static int netdev_configure_server_macvlan(struct lxc_handler *handler, struct l
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);

return 0;
Expand Down Expand Up @@ -987,7 +987,7 @@ static int netdev_configure_server_ipvlan(struct lxc_handler *handler, struct lx
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);

return 0;
Expand Down Expand Up @@ -1061,7 +1061,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);

return 0;
Expand Down Expand Up @@ -1135,7 +1135,7 @@ static int netdev_configure_server_phys(struct lxc_handler *handler, struct lxc_
return -1;
}

DEBUG("Instantiated phys \"%s\" with ifindex is \"%d\"", netdev->link,
DEBUG("Instantiated phys \"%s\" with ifindex \"%d\"", netdev->link,
netdev->ifindex);

return 0;
Expand Down

0 comments on commit 4a037d6

Please sign in to comment.