summaryrefslogtreecommitdiff
path: root/source4/cluster
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-02 09:36:58 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-02 13:08:41 +0100
commitd0ad2ecdeadcfdc99ead63000d484dfba5745ac2 (patch)
treec31f49acd9fe1704ce5a2056f4e5cf571f6c8983 /source4/cluster
parent0fadddf8d417f34dbe964ffd20483d24bf308325 (diff)
downloadsamba-d0ad2ecdeadcfdc99ead63000d484dfba5745ac2.tar.gz
samba-d0ad2ecdeadcfdc99ead63000d484dfba5745ac2.tar.bz2
samba-d0ad2ecdeadcfdc99ead63000d484dfba5745ac2.zip
s4:cluster: s/private/private_data
metze
Diffstat (limited to 'source4/cluster')
-rw-r--r--source4/cluster/cluster_private.h2
-rw-r--r--source4/cluster/local.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/cluster/cluster_private.h b/source4/cluster/cluster_private.h
index 79394b46db..e57c983ed0 100644
--- a/source4/cluster/cluster_private.h
+++ b/source4/cluster/cluster_private.h
@@ -36,7 +36,7 @@ struct cluster_ops {
cluster_message_fn_t handler);
NTSTATUS (*message_send)(struct cluster_ops *ops,
struct server_id server, DATA_BLOB *data);
- void *private; /* backend state */
+ void *private_data; /* backend state */
};
void cluster_set_ops(struct cluster_ops *new_ops);
diff --git a/source4/cluster/local.c b/source4/cluster/local.c
index f36a06c9b6..96d1d53d4a 100644
--- a/source4/cluster/local.c
+++ b/source4/cluster/local.c
@@ -103,7 +103,7 @@ static struct cluster_ops cluster_local_ops = {
.backend_handle = local_backend_handle,
.message_init = local_message_init,
.message_send = local_message_send,
- .private = NULL
+ .private_data = NULL
};
void cluster_local_init(void)