From 15543f18acc9040fd3213e826147fe5604bb1ae1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 29 Nov 2004 12:01:46 +0000 Subject: r4000: DATA_BLOB.data is uint8_t * not void * :-) (thanks abartlet for telling me) metze (This used to be commit 2783bf393f6310f9d827538329d619dad5b02dd0) --- source4/auth/auth_winbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/auth') diff --git a/source4/auth/auth_winbind.c b/source4/auth/auth_winbind.c index 19c76595d3..8305bd1644 100644 --- a/source4/auth/auth_winbind.c +++ b/source4/auth/auth_winbind.c @@ -35,7 +35,7 @@ static NTSTATUS get_info3_from_ndr(TALLOC_CTX *mem_ctx, struct winbindd_response NTSTATUS status; DATA_BLOB blob; blob.length = len - 4; - blob.data = (void *)(((char *)response->extra_data) + 4); + blob.data = (uint8_t *)(((char *)response->extra_data) + 4); status = ndr_pull_struct_blob(&blob, mem_ctx, info3, (ndr_pull_flags_fn_t)ndr_pull_netr_SamInfo3); -- cgit