From: Michel Normand Date: Mon, 22 Mar 2010 10:08:34 +0000 (+0100) Subject: typo in error message X-Git-Tag: lxc-2.1.1~3007 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=adc1e6c25d39840aa76d665361d3b6dd7373acd9;p=mirror_lxc.git typo in error message Wrong variable. Signed-off-by: Michel Normand Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index b843c089b..7486fdf0a 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -1000,7 +1000,7 @@ static int setup_netdev(struct lxc_netdev *netdev) /* rename the interface name */ if (lxc_device_rename(ifname, netdev->name)) { - ERROR("failed to rename %s->%s", ifname, current_ifname); + ERROR("failed to rename %s->%s", ifname, netdev->name); return -1; }