diff options
author | Volker Lendecke <vl@samba.org> | 2013-08-21 15:58:23 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-08-11 21:11:16 +0200 |
commit | 174275e069c107ee021e212462a1a15a77264b5e (patch) | |
tree | 95a9aa451d79349c7d200f1aa96c93fb84a50b77 /source3 | |
parent | 1230954806647d5c9f2cacebea1bbc584de11b38 (diff) | |
download | samba-174275e069c107ee021e212462a1a15a77264b5e.tar.gz samba-174275e069c107ee021e212462a1a15a77264b5e.tar.xz samba-174275e069c107ee021e212462a1a15a77264b5e.zip |
smbd: Pass down "lease" to open_file_ntcreate
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/open.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index da8dc7b456..27625193fa 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2061,6 +2061,7 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, uint32 create_options, /* options such as delete on close. */ uint32 new_dos_attributes, /* attributes used for new file. */ int oplock_request, /* internal Samba oplock codes. */ + struct smb2_lease *lease, /* Information (FILE_EXISTS etc.) */ uint32_t private_flags, /* Samba specific flags. */ int *pinfo, @@ -3991,6 +3992,7 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, create_options, file_attributes, oplock_request, + lease, private_flags, &info, fsp); |