classifier: Remove unused functions cls_rule_moved(), cls_rule_replace().
[openvswitch] / ovsdb / ovsdb-client.c
index 8a48e8b5d0a59fe6a133f1ce6de3f3a30d92df7e..aaee5dbf82ea3704fcff662d7093e5592788d971 100644 (file)
@@ -41,9 +41,9 @@
 #include "table.h"
 #include "timeval.h"
 #include "util.h"
-
 #include "vlog.h"
-#define THIS_MODULE VLM_ovsdb_client
+
+VLOG_DEFINE_THIS_MODULE(ovsdb_client);
 
 /* --format: Output formatting. */
 static enum {
@@ -441,6 +441,10 @@ table_print_table__(const struct table *table)
         putchar('\n');
     }
 
+    if (table->caption) {
+        puts(table->caption);
+    }
+
     if (output_headings) {
         for (x = 0; x < table->n_columns; x++) {
             const struct column *column = &table->columns[x];