It missed comma as constant seperator in match string for ND responder.
Signed-off-by: Zong Kai LI <[email protected]>
---
ovn/northd/ovn-northd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c
index a3d1672..8e5c5c5 100644
--- a/ovn/northd/ovn-northd.c
+++ b/ovn/northd/ovn-northd.c
@@ -2018,7 +2018,7 @@ build_lswitch_flows(struct hmap *datapaths, struct hmap
*ports,
} else {
ds_put_format(&match, "nd.target == {");
for (size_t j = 0; j < op->lsp_addrs[i].n_ipv6_addrs; j++)
{
- ds_put_cstr(&match,
+ ds_put_format(&match, "%s, ",
op->lsp_addrs[i].ipv6_addrs[j].addr_s);
}
ds_chomp(&match, ' ');
--
1.9.1
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev