From: Daniel Lezcano Date: Wed, 2 Feb 2011 20:55:49 +0000 (+0100) Subject: fix empty network configuration X-Git-Tag: lxc-0.7.4~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b57e8b681c487030995378793febd5b35396c5f;p=thirdparty%2Flxc.git fix empty network configuration The return statement is at the wrong place. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 2201519fc..0fe8e2621 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -1224,8 +1224,8 @@ static int setup_netdev(struct lxc_netdev *netdev) strerror(-err)); return -1; } - return 0; } + return 0; } /* retrieve the name of the interface */