diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-03 13:57:11 +0000 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2013-10-24 14:22:03 +0200 |
commit | 184cc138b6fcd832fd084a919d65ad2f273bf5eb (patch) | |
tree | 6c71c407fdb75173fd7413be9f4982fcbc08e2b2 /source3/smbd/open.c | |
parent | bd542281bc424e4feae255df16b04f598d692304 (diff) | |
download | samba-184cc138b6fcd832fd084a919d65ad2f273bf5eb.tar.gz samba-184cc138b6fcd832fd084a919d65ad2f273bf5eb.tar.bz2 samba-184cc138b6fcd832fd084a919d65ad2f273bf5eb.zip |
smbd: Remove separate oplock_type parameter from set_file_oplock
This avoids the question where it could happen that something else but
fsp->oplock_type might be useful as an argument here.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3/smbd/open.c')
-rw-r--r-- | source3/smbd/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index c33a4cf357..4db673acd3 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2703,7 +2703,7 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, * file structs. */ - status = set_file_oplock(fsp, fsp->oplock_type); + status = set_file_oplock(fsp); if (!NT_STATUS_IS_OK(status)) { /* * Could not get the kernel oplock |