From 06036898849974797cf49c76a56fc6e10461d37d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 21 Oct 2010 10:48:56 -0700 Subject: [PATCH] ovsdb-client: Make "dump" print table names in default output format too. The "dump" command printed table names in CSV and HTML output formats but they were omitted in the default tabular form. This commit corrects the discrepancy. Reported-by: Brad Hall --- ovsdb/ovsdb-client.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ovsdb/ovsdb-client.c b/ovsdb/ovsdb-client.c index b8a2fa4f..326e3b1a 100644 --- a/ovsdb/ovsdb-client.c +++ b/ovsdb/ovsdb-client.c @@ -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]; -- 2.30.2