From 52ae00b3d32cd7d6c0decc238a7c14d6fa51ce95 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Sat, 29 Aug 2009 15:54:28 -0700 Subject: [PATCH] ofproto: Cleanup bridge/dump-flows output Add separator that was missing from the output of the "bridge/dump-flows" command from ovs-appctl. --- secchan/ofproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2