From d0ad2ecdeadcfdc99ead63000d484dfba5745ac2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 2 Feb 2009 09:36:58 +0100 Subject: s4:cluster: s/private/private_data metze --- source4/cluster/cluster_private.h | 2 +- source4/cluster/local.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/cluster') 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) -- cgit