summaryrefslogtreecommitdiff
path: root/ovsdb/storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'ovsdb/storage.c')
-rw-r--r--ovsdb/storage.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ovsdb/storage.c b/ovsdb/storage.c
index 7b4ad16f6..f662e9056 100644
--- a/ovsdb/storage.c
+++ b/ovsdb/storage.c
@@ -198,6 +198,16 @@ ovsdb_storage_get_memory_usage(const struct ovsdb_storage *storage,
}
}
+char *
+ovsdb_storage_get_error(const struct ovsdb_storage *storage)
+{
+ if (storage->error) {
+ return ovsdb_error_to_string(storage->error);
+ }
+
+ return NULL;
+}
+
void
ovsdb_storage_run(struct ovsdb_storage *storage)
{