diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2009-11-18 17:51:35 -0800 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2009-11-25 12:55:48 -0800 |
commit | 7f14388721fdfdc4d5e3d36dd5071a0993695815 (patch) | |
tree | 90835e7c56a2afa97498c12384823bfdef649c29 /source4/libcli/smb2 | |
parent | 65a611ec7299ba992d16dff69da47b1b8e16241d (diff) | |
download | samba-7f14388721fdfdc4d5e3d36dd5071a0993695815.tar.gz samba-7f14388721fdfdc4d5e3d36dd5071a0993695815.tar.bz2 samba-7f14388721fdfdc4d5e3d36dd5071a0993695815.zip |
s4/libcli: rename previously reserved field in SMB2 LOCK struct
The lock.in.reserved field has been renamed lock_sequence in the
SMB 2.1 dialect. See MS-SMB 2.2.26.
Diffstat (limited to 'source4/libcli/smb2')
-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 62c6e5dba7..f2a76d876a 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 SSVAL(req->out.body, 0, 0x30); SSVAL(req->out.body, 0x02, io->in.lock_count); - SIVAL(req->out.body, 0x04, io->in.reserved); + SIVAL(req->out.body, 0x04, io->in.lock_sequence); smb2_push_handle(req->out.body+0x08, &io->in.file.handle); for (i=0;i<io->in.lock_count;i++) { |