From 128d327ac27aa2d92ace767ac2c377d86171533e Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Mon, 14 Jul 2014 15:44:41 -0400 Subject: [PATCH] Fix typo in previous patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/confile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lxc/confile.c b/src/lxc/confile.c index 42b29d151..f3cab6be8 100644 --- a/src/lxc/confile.c +++ b/src/lxc/confile.c @@ -596,7 +596,7 @@ static int config_network_veth_pair(const char *key, const char *value, return -1; if (netdev->type != LXC_NET_VETH) { - ERROR("Invalid veth pair for a non-veth netdev") + ERROR("Invalid veth pair for a non-veth netdev"); return -1; } return network_ifname(&netdev->priv.veth_attr.pair, value); @@ -612,7 +612,7 @@ static int config_network_macvlan_mode(const char *key, const char *value, return -1; if (netdev->type != LXC_NET_MACVLAN) { - ERROR("Invalid macvlan.mode for a non-macvlan netdev") + ERROR("Invalid macvlan.mode for a non-macvlan netdev"); return -1; } return macvlan_mode(&netdev->priv.macvlan_attr.mode, value); @@ -656,7 +656,7 @@ static int config_network_vlan_id(const char *key, const char *value, return -1; if (netdev->type != LXC_NET_VLAN) { - ERROR("Invalid vlan.id for a non-macvlan netdev") + ERROR("Invalid vlan.id for a non-macvlan netdev"); return -1; } if (get_u16(&netdev->priv.vlan_attr.vid, value, 0)) -- 2.47.2