git.samba.org
/
samba.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
daea5e8
)
r3970: fix compiler warning
author
Stefan Metzmacher
<metze@samba.org>
Thu, 25 Nov 2004 19:59:08 +0000
(19:59 +0000)
committer
Gerald (Jerry) Carter
<jerry@samba.org>
Wed, 10 Oct 2007 18:06:09 +0000
(13:06 -0500)
metze
(This used to be commit
1f03d797129c87f231a4f464432475a5c2f91d35
)
source4/auth/auth_winbind.c
patch
|
blob
|
history
diff --git
a/source4/auth/auth_winbind.c
b/source4/auth/auth_winbind.c
index 66072950333ff053d959ae09c2c86f03a8950cc4..19c76595d38e35857223f0e8fcb6d9323560cb9e 100644
(file)
--- 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 = (
(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);