diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-11 08:59:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:17 -0500 |
commit | 7e330c7c0c2aecf2dd2d049b0a58e20309ad4223 (patch) | |
tree | 96ca466826cd3e4efa5c479780f6c3f0453a4d93 | |
parent | 6bf99b9e859141185fd39f4233d0b42329bfd764 (diff) | |
download | samba-7e330c7c0c2aecf2dd2d049b0a58e20309ad4223.tar.gz samba-7e330c7c0c2aecf2dd2d049b0a58e20309ad4223.tar.bz2 samba-7e330c7c0c2aecf2dd2d049b0a58e20309ad4223.zip |
r22788: fix typo
metze
(This used to be commit 635a636e89e462825efaacd5563c40fec2ceefb1)
-rw-r--r-- | source4/libcli/smb2/lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb2/lock.c b/source4/libcli/smb2/lock.c index c06c10a806..23693a0757 100644 --- a/source4/libcli/smb2/lock.c +++ b/source4/libcli/smb2/lock.c @@ -39,7 +39,7 @@ struct smb2_request *smb2_lock_send(struct smb2_tree *tree, struct smb2_lock *io smb2_push_handle(req->out.body+0x08, &io->in.file.handle); SBVAL(req->out.body, 0x18, io->in.offset); SBVAL(req->out.body, 0x20, io->in.count); - SIVAL(req->out.body, 0x28, io->in.unknown5); + SIVAL(req->out.body, 0x24, io->in.unknown5); SIVAL(req->out.body, 0x28, io->in.flags); smb2_transport_send(req); |