aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrian Nord <nightnord@gmail.com>2009-11-09 10:43:03 +0100
committerDaniel Lezcano <dlezcano@fr.ibm.com>2009-11-09 10:43:03 +0100
commit7fa9074f13c6a8aa26316c214307bba21dd22e36 (patch)
tree0dd66137090924490947ef1a595ee062017ff91c
parentlxc: lxc version to reflect string in AC_INIT (V2) (diff)
downloadlxc-7fa9074f13c6a8aa26316c214307bba21dd22e36.tar.gz
lxc-7fa9074f13c6a8aa26316c214307bba21dd22e36.tar.bz2
lxc-7fa9074f13c6a8aa26316c214307bba21dd22e36.zip
ipv6 interfaces added with /0 prefix
Greetings, I've found a small typo into src/lxc/conf.c that leads to nulled prefix for ipv6 addresses. Signed-off-by: Andrian Nord <NightNord@gmail.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
-rw-r--r--src/lxc/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lxc/conf.c b/src/lxc/conf.c
index 69cf8e6..25204e4 100644
--- a/src/lxc/conf.c
+++ b/src/lxc/conf.c
@@ -774,7 +774,7 @@ static int setup_ipv4_addr(struct lxc_list *ip, int ifindex)
static int setup_ipv6_addr(struct lxc_list *ip, int ifindex)
{
struct lxc_list *iterator;
- struct lxc_inetdev *inet6dev;
+ struct lxc_inet6dev *inet6dev;
lxc_list_for_each(iterator, ip) {