From ca6ba70092b1528e12d3140d70232175a13c335d Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Mon, 15 Dec 2014 14:10:38 +0100 Subject: list: Rename struct list to struct ovs_list struct list is a common name and can't be used in public headers. Signed-off-by: Thomas Graf Acked-by: Ben Pfaff --- ovsdb/ovsdb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ovsdb/ovsdb.h') diff --git a/ovsdb/ovsdb.h b/ovsdb/ovsdb.h index 1103e6df8..04586e746 100644 --- a/ovsdb/ovsdb.h +++ b/ovsdb/ovsdb.h @@ -56,11 +56,11 @@ bool ovsdb_schema_equal(const struct ovsdb_schema *, /* Database. */ struct ovsdb { struct ovsdb_schema *schema; - struct list replicas; /* Contains "struct ovsdb_replica"s. */ + struct ovs_list replicas; /* Contains "struct ovsdb_replica"s. */ struct shash tables; /* Contains "struct ovsdb_table *"s. */ /* Triggers. */ - struct list triggers; /* Contains "struct ovsdb_trigger"s. */ + struct ovs_list triggers; /* Contains "struct ovsdb_trigger"s. */ bool run_triggers; }; @@ -79,7 +79,7 @@ struct json *ovsdb_execute(struct ovsdb *, const struct ovsdb_session *, /* Database replication. */ struct ovsdb_replica { - struct list node; /* Element in "struct ovsdb" replicas list. */ + struct ovs_list node; /* Element in "struct ovsdb" replicas list. */ const struct ovsdb_replica_class *class; }; -- cgit v1.2.1