odp-util: Fix CT action formating.
authorJarno Rajahalme <jrajahalme@nicira.com>
Fri, 23 Oct 2015 23:35:17 +0000 (16:35 -0700)
committerJarno Rajahalme <jrajahalme@nicira.com>
Fri, 23 Oct 2015 23:35:17 +0000 (16:35 -0700)
Comma was missing after "label" attribute.

Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Joe Stringer <joestringer@nicira.com>
lib/odp-util.c

index e131e36..8f0f39a 100644 (file)
@@ -590,6 +590,7 @@ format_odp_conntrack_action(struct ds *ds, const struct nlattr *attr)
         if (label) {
             ds_put_format(ds, "label=");
             format_u128(ds, label, label + 1, true);
+            ds_put_char(ds, ',');
         }
         if (helper) {
             ds_put_format(ds, "helper=%s,", helper);