From 71661692f9a5ad91ec9b97b197cc3a2b057585cf Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Mon, 22 Jul 2013 08:20:55 -0700 Subject: [PATCH] store: Renamed 'parent' attribute to 'super'. We might use 'parent' in different places in the future. --- src/include/core/store.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/core/store.h b/src/include/core/store.h index b17fb21..fb79b39 100644 --- a/src/include/core/store.h +++ b/src/include/core/store.h @@ -44,7 +44,7 @@ extern const sdb_type_t sdb_attribute_type; extern const sdb_type_t sdb_service_type; typedef struct { - sdb_object_t parent; + sdb_object_t super; sdb_time_t last_update; } sdb_store_obj_t; #define SDB_STORE_OBJ_INIT(t) { SDB_OBJECT_TYPED_INIT(t), 0 } @@ -52,7 +52,7 @@ typedef struct { #define SDB_CONST_STORE_OBJ(obj) ((const sdb_store_obj_t *)(obj)) typedef struct { - sdb_store_obj_t parent; + sdb_store_obj_t super; char *hostname; } sdb_service_t; @@ -61,7 +61,7 @@ typedef struct { #define SDB_CONST_SVC(obj) ((const sdb_service_t *)(obj)) typedef struct { - sdb_store_obj_t parent; + sdb_store_obj_t super; char *attr_value; char *hostname; @@ -71,7 +71,7 @@ typedef struct { #define SDB_CONST_ATTR(obj) ((const sdb_attribute_t *)(obj)) typedef struct { - sdb_store_obj_t parent; + sdb_store_obj_t super; sdb_llist_t *attributes; sdb_llist_t *services; @@ -82,7 +82,7 @@ typedef struct { /* shortcuts for accessing the sdb_store_obj_t attributes of inheriting * objects */ -#define _last_update parent.last_update +#define _last_update super.last_update sdb_host_t * sdb_host_create(const char *name); -- 2.30.2