From: Justin Pettit Date: Sat, 29 Aug 2009 22:54:28 +0000 (-0700) Subject: ofproto: Cleanup bridge/dump-flows output X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52ae00b3d32cd7d6c0decc238a7c14d6fa51ce95;p=openvswitch ofproto: Cleanup bridge/dump-flows output Add separator that was missing from the output of the "bridge/dump-flows" command from ovs-appctl. --- diff --git a/secchan/ofproto.c b/secchan/ofproto.c index b3fef1b7..c29ddfb1 100644 --- a/secchan/ofproto.c +++ b/secchan/ofproto.c @@ -2516,7 +2516,7 @@ flow_stats_ds_cb(struct cls_rule *rule_, void *cbdata_) ds_put_format(results, "duration=%llds, ", (time_msec() - rule->created) / 1000); - ds_put_format(results, "priority=%u", rule->cr.priority); + ds_put_format(results, "priority=%u, ", rule->cr.priority); ds_put_format(results, "n_packets=%"PRIu64", ", packet_count); ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count); ofp_print_match(results, &match, true);