]> git.proxmox.com Git - mirror_lxc.git/commitdiff
network: fix grammar
authorChristian Brauner <christian.brauner@ubuntu.com>
Fri, 26 Feb 2021 13:19:50 +0000 (14:19 +0100)
committerChristian Brauner <christian.brauner@ubuntu.com>
Fri, 26 Feb 2021 13:20:05 +0000 (14:20 +0100)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/network.c

index 075af88715aa996208944072480613271a7a3e1e..06366be93a41a7f9732295d02898ddbd5f2d1db7 100644 (file)
@@ -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;
@@ -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;
@@ -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;
@@ -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;