summaryrefslogtreecommitdiff
path: root/source4/libcli/wrepl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-02 08:26:33 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-02 13:08:28 +0100
commit58ca4d4e3184580fbd895cec80d01b01768ae378 (patch)
tree6fa7f6f195e986dbb1f2396d96eb2007f0cc9254 /source4/libcli/wrepl
parent71e318cf319606828657338ad49d0ad73ba2cc19 (diff)
downloadsamba-58ca4d4e3184580fbd895cec80d01b01768ae378.tar.gz
samba-58ca4d4e3184580fbd895cec80d01b01768ae378.tar.bz2
samba-58ca4d4e3184580fbd895cec80d01b01768ae378.zip
s4:libcli/wrepl: s/private/private_data
metze
Diffstat (limited to 'source4/libcli/wrepl')
-rw-r--r--source4/libcli/wrepl/winsrepl.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/libcli/wrepl/winsrepl.c b/source4/libcli/wrepl/winsrepl.c
index 61bb10bf6a..48a6abba9d 100644
--- a/source4/libcli/wrepl/winsrepl.c
+++ b/source4/libcli/wrepl/winsrepl.c
@@ -81,9 +81,9 @@ static void wrepl_request_timeout_handler(struct tevent_context *ev, struct teve
/*
handle recv events
*/
-static NTSTATUS wrepl_finish_recv(void *private, DATA_BLOB packet_blob_in)
+static NTSTATUS wrepl_finish_recv(void *private_data, DATA_BLOB packet_blob_in)
{
- struct wrepl_socket *wrepl_socket = talloc_get_type(private, struct wrepl_socket);
+ struct wrepl_socket *wrepl_socket = talloc_get_type(private_data, struct wrepl_socket);
struct wrepl_request *req = wrepl_socket->recv_queue;
DATA_BLOB blob;
enum ndr_err_code ndr_err;
@@ -123,9 +123,9 @@ static NTSTATUS wrepl_finish_recv(void *private, DATA_BLOB packet_blob_in)
handler for winrepl events
*/
static void wrepl_handler(struct tevent_context *ev, struct tevent_fd *fde,
- uint16_t flags, void *private)
+ uint16_t flags, void *private_data)
{
- struct wrepl_socket *wrepl_socket = talloc_get_type(private,
+ struct wrepl_socket *wrepl_socket = talloc_get_type(private_data,
struct wrepl_socket);
if (flags & EVENT_FD_READ) {
packet_recv(wrepl_socket->packet);
@@ -136,9 +136,9 @@ static void wrepl_handler(struct tevent_context *ev, struct tevent_fd *fde,
}
}
-static void wrepl_error(void *private, NTSTATUS status)
+static void wrepl_error(void *private_data, NTSTATUS status)
{
- struct wrepl_socket *wrepl_socket = talloc_get_type(private,
+ struct wrepl_socket *wrepl_socket = talloc_get_type(private_data,
struct wrepl_socket);
wrepl_socket_dead(wrepl_socket, status);
}