From 7b57e8b681c487030995378793febd5b35396c5f Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Wed, 2 Feb 2011 21:55:49 +0100 Subject: [PATCH] fix empty network configuration The return statement is at the wrong place. Signed-off-by: Daniel Lezcano --- src/lxc/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.47.2