1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4:winbind: s/private/private_data

metze
This commit is contained in:
Stefan Metzmacher 2009-02-02 08:43:37 +01:00
parent 100f4e318e
commit 7237d777d5
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@
work out if a packet is complete for protocols that use a 32 bit host byte
order length
*/
NTSTATUS wbsrv_samba3_packet_full_request(void *private, DATA_BLOB blob, size_t *size)
NTSTATUS wbsrv_samba3_packet_full_request(void *private_data, DATA_BLOB blob, size_t *size)
{
uint32_t *len;
if (blob.length < 4) {
@ -270,10 +270,10 @@ NTSTATUS wbsrv_samba3_send_reply(struct wbsrv_samba3_call *call)
return status;
}
NTSTATUS wbsrv_samba3_process(void *private, DATA_BLOB blob)
NTSTATUS wbsrv_samba3_process(void *private_data, DATA_BLOB blob)
{
NTSTATUS status;
struct wbsrv_connection *wbconn = talloc_get_type(private,
struct wbsrv_connection *wbconn = talloc_get_type(private_data,
struct wbsrv_connection);
struct wbsrv_samba3_call *call;
status = wbsrv_samba3_pull_request(blob, wbconn, &call);

View File

@ -41,9 +41,9 @@ void wbsrv_terminate_connection(struct wbsrv_connection *wbconn, const char *rea
/*
called on a tcp recv error
*/
static void wbsrv_recv_error(void *private, NTSTATUS status)
static void wbsrv_recv_error(void *private_data, NTSTATUS status)
{
struct wbsrv_connection *wbconn = talloc_get_type(private, struct wbsrv_connection);
struct wbsrv_connection *wbconn = talloc_get_type(private_data, struct wbsrv_connection);
wbsrv_terminate_connection(wbconn, nt_errstr(status));
}