Signed-off-by: Thadeu Lima de Souza Cascardo <casca...@redhat.com> --- lib/smap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/smap.c b/lib/smap.c index 2c41013..07dd23a 100644 --- a/lib/smap.c +++ b/lib/smap.c @@ -19,6 +19,7 @@ #include "hash.h" #include "json.h" +#include "packets.h" #include "uuid.h" static struct smap_node *smap_add__(struct smap *, char *, void *, @@ -101,8 +102,7 @@ void smap_add_ipv6(struct smap *smap, const char *key, struct in6_addr *addr) { char buf[INET6_ADDRSTRLEN]; - - inet_ntop(AF_INET6, addr, buf, sizeof buf); + ipv6_string_mapped(buf, addr); smap_add(smap, key, buf); } -- 2.5.0 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev