s4:cluster: s/private/private_data
authorStefan Metzmacher <metze@samba.org>
Mon, 2 Feb 2009 08:36:58 +0000 (09:36 +0100)
committerStefan Metzmacher <metze@samba.org>
Mon, 2 Feb 2009 12:08:41 +0000 (13:08 +0100)
metze

source4/cluster/cluster_private.h
source4/cluster/local.c

index 79394b46dbc1565be9af80cc754c9598a7462a78..e57c983ed0cd9b2495b91af73352ee3a44805754 100644 (file)
@@ -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);
index f36a06c9b679de2f1c7f49a51173dcc11d96d49d..96d1d53d4a433638c63f95f0b3a2c44ef8d41b02 100644 (file)
@@ -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)