summaryrefslogtreecommitdiff
path: root/ovsdb/storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'ovsdb/storage.c')
-rw-r--r--ovsdb/storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ovsdb/storage.c b/ovsdb/storage.c
index 446cae086..b810bff04 100644
--- a/ovsdb/storage.c
+++ b/ovsdb/storage.c
@@ -246,12 +246,12 @@ ovsdb_storage_read(struct ovsdb_storage *storage,
raft_next_entry(storage->raft, txnid, &is_snapshot));
if (!json) {
return NULL;
- } else if (json->type != JSON_ARRAY || json->u.array.n != 2) {
+ } else if (json->type != JSON_ARRAY || json->array.n != 2) {
json_destroy(json);
return ovsdb_error(NULL, "invalid commit format");
}
- struct json **e = json->u.array.elems;
+ struct json **e = json->array.elems;
schema_json = e[0]->type != JSON_NULL ? e[0] : NULL;
txn_json = e[1]->type != JSON_NULL ? e[1] : NULL;
} else if (storage->log) {