summaryrefslogtreecommitdiff
path: root/source4/libcli/smb2/write.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-11-14 07:06:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:17 -0500
commit61317df8aab2fe2fd47baba8a137566df7b23395 (patch)
tree911e0e31491681cfb992293a78e1c7bdf0491f42 /source4/libcli/smb2/write.c
parent695e37d8e75c95af24cb3f02cfb6d44d95067671 (diff)
downloadsamba-61317df8aab2fe2fd47baba8a137566df7b23395.tar.gz
samba-61317df8aab2fe2fd47baba8a137566df7b23395.tar.bz2
samba-61317df8aab2fe2fd47baba8a137566df7b23395.zip
r11721: Fix warnings
(This used to be commit d760583e388157ff25e317da06c57e5a42f171bd)
Diffstat (limited to 'source4/libcli/smb2/write.c')
-rw-r--r--source4/libcli/smb2/write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb2/write.c b/source4/libcli/smb2/write.c
index f842969b93..e458a540e8 100644
--- a/source4/libcli/smb2/write.c
+++ b/source4/libcli/smb2/write.c
@@ -39,7 +39,7 @@ struct smb2_request *smb2_write_send(struct smb2_tree *tree, struct smb2_write *
SSVAL(req->out.body, 0x02, req->out.body+0x30 - req->out.hdr);
SIVAL(req->out.body, 0x04, io->in.data.length);
SBVAL(req->out.body, 0x08, io->in.offset);
- smb2_put_handle(req->out.body+0x10, io->in.handle);
+ smb2_put_handle(req->out.body+0x10, &io->in.handle);
memcpy(req->out.body+0x20, io->in._pad, 0x10);
memcpy(req->out.body+0x30, io->in.data.data, io->in.data.length);