summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/db-ctl-base.h2
-rw-r--r--utilities/ovs-vsctl.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/db-ctl-base.h b/lib/db-ctl-base.h
index eb4442705..d8c4db2c6 100644
--- a/lib/db-ctl-base.h
+++ b/lib/db-ctl-base.h
@@ -197,7 +197,7 @@ struct weak_ref_table {
struct cmd_show_table {
const struct ovsdb_idl_table_class *table;
const struct ovsdb_idl_column *name_column;
- const struct ovsdb_idl_column *columns[3]; /* Seems like a good number. */
+ const struct ovsdb_idl_column *columns[4]; /* Seems like a good number. */
const struct weak_ref_table wref_table;
};
diff --git a/utilities/ovs-vsctl.c b/utilities/ovs-vsctl.c
index 21fa18ddb..d55f11c4a 100644
--- a/utilities/ovs-vsctl.c
+++ b/utilities/ovs-vsctl.c
@@ -1018,7 +1018,8 @@ static struct cmd_show_table cmd_show_tables[] = {
&ovsrec_interface_col_name,
{&ovsrec_interface_col_type,
&ovsrec_interface_col_options,
- &ovsrec_interface_col_error},
+ &ovsrec_interface_col_error,
+ &ovsrec_interface_col_bfd_status},
{NULL, NULL, NULL}
},