From c463bc127c911dcc3177e208931819ffc2f4fadb Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 2 Feb 2009 08:28:05 +0100 Subject: s4:ntp_signd: s/private/private_data metze --- source4/ntp_signd/ntp_signd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source4/ntp_signd/ntp_signd.c b/source4/ntp_signd/ntp_signd.c index 575be1e97e..3040716897 100644 --- a/source4/ntp_signd/ntp_signd.c +++ b/source4/ntp_signd/ntp_signd.c @@ -110,9 +110,9 @@ static NTSTATUS signing_failure(struct ntp_signd_connection *ntp_signdconn, /* receive a full packet on a NTP_SIGND connection */ -static NTSTATUS ntp_signd_recv(void *private, DATA_BLOB wrapped_input) +static NTSTATUS ntp_signd_recv(void *private_data, DATA_BLOB wrapped_input) { - struct ntp_signd_connection *ntp_signdconn = talloc_get_type(private, + struct ntp_signd_connection *ntp_signdconn = talloc_get_type(private_data, struct ntp_signd_connection); NTSTATUS status = NT_STATUS_UNSUCCESSFUL; TALLOC_CTX *tmp_ctx = talloc_new(ntp_signdconn); @@ -271,9 +271,9 @@ static void ntp_signd_recv_handler(struct stream_connection *conn, uint16_t flag /* called on a tcp recv error */ -static void ntp_signd_recv_error(void *private, NTSTATUS status) +static void ntp_signd_recv_error(void *private_data, NTSTATUS status) { - struct ntp_signd_connection *ntp_signdconn = talloc_get_type(private, struct ntp_signd_connection); + struct ntp_signd_connection *ntp_signdconn = talloc_get_type(private_data, struct ntp_signd_connection); ntp_signd_terminate_connection(ntp_signdconn, nt_errstr(status)); } -- cgit