Skip to content

Commit

Permalink
odp-util: Add missing comma after gtpu attributes.
Browse files Browse the repository at this point in the history
Currently flows are printed like this:
        'tunnel(gtpu(flags=0x7f,msgtype=0)flags(0))'
With this change:
        'tunnel(gtpu(flags=0x7f,msgtype=0),flags(0))'

Fixes: 3c6d05a ("userspace: Add GTP-U support.")
Acked-by: Yi Yang <yangyi01@inspur.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
  • Loading branch information
igsilya committed Oct 20, 2020
1 parent 5aa1bdc commit 2605c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/odp-util.c
Expand Up @@ -3971,7 +3971,7 @@ format_odp_tun_attr(const struct nlattr *attr, const struct nlattr *mask_attr,
case OVS_TUNNEL_KEY_ATTR_GTPU_OPTS:
ds_put_cstr(ds, "gtpu(");
format_odp_tun_gtpu_opt(a, ma, ds, verbose);
ds_put_cstr(ds, ")");
ds_put_cstr(ds, "),");
break;
case __OVS_TUNNEL_KEY_ATTR_MAX:
default:
Expand Down

0 comments on commit 2605c4e

Please sign in to comment.