From 41709cccb8099972f9c6c3faf583b1286cb92e8a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 13 Nov 2009 13:23:35 -0800 Subject: ovsdb: Rename ovsdb_file to ovsdb_log. This prepares for introducing a new, higher-level ovsdb_file that encapsulates ovsdb storage in a file. --- ovsdb/ovsdb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ovsdb/ovsdb.h') diff --git a/ovsdb/ovsdb.h b/ovsdb/ovsdb.h index 3f62966a7..d57ebfca6 100644 --- a/ovsdb/ovsdb.h +++ b/ovsdb/ovsdb.h @@ -46,7 +46,7 @@ struct json *ovsdb_schema_to_json(const struct ovsdb_schema *); /* Database. */ struct ovsdb { struct ovsdb_schema *schema; - struct ovsdb_file *file; /* Disk file (null for in-memory db). */ + struct ovsdb_log *log; /* Disk log (null for in-memory db). */ struct shash tables; /* Contains "struct ovsdb_table *"s. */ /* Triggers. */ @@ -54,7 +54,7 @@ struct ovsdb { bool run_triggers; }; -struct ovsdb *ovsdb_create(struct ovsdb_file *, struct ovsdb_schema *); +struct ovsdb *ovsdb_create(struct ovsdb_log *, struct ovsdb_schema *); struct ovsdb_error *ovsdb_open(const char *file_name, bool read_only, struct ovsdb **) WARN_UNUSED_RESULT; -- cgit v1.2.1