ofproto: Cleanup bridge/dump-flows output
authorJustin Pettit <jpettit@nicira.com>
Sat, 29 Aug 2009 22:54:28 +0000 (15:54 -0700)
committerJustin Pettit <jpettit@nicira.com>
Tue, 1 Sep 2009 21:48:33 +0000 (14:48 -0700)
Add separator that was missing from the output of the "bridge/dump-flows"
command from ovs-appctl.

secchan/ofproto.c

index b3fef1b..c29ddfb 100644 (file)
@@ -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);