1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r3970: fix compiler warning

metze
(This used to be commit 1f03d79712)
This commit is contained in:
Stefan Metzmacher 2004-11-25 19:59:08 +00:00 committed by Gerald (Jerry) Carter
parent daea5e8c8c
commit 5cbc9574a6

View File

@ -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 = ((char *)response->extra_data) + 4;
blob.data = (void *)(((char *)response->extra_data) + 4);
status = ndr_pull_struct_blob(&blob, mem_ctx, info3,
(ndr_pull_flags_fn_t)ndr_pull_netr_SamInfo3);