From: Andrian Nord Date: Mon, 9 Nov 2009 09:43:03 +0000 (+0100) Subject: ipv6 interfaces added with /0 prefix X-Git-Tag: lxc_0_6_4~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fa9074f13c6a8aa26316c214307bba21dd22e36;p=thirdparty%2Flxc.git 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 Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 69cf8e638..25204e49b 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) {