summaryrefslogtreecommitdiff
path: root/source3/smbd/open.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-08 17:47:31 +0200
committerMichael Adam <obnox@samba.org>2012-06-08 23:20:20 +0200
commit8a338c65a1824ae8a93bef7bc8fac65684c285c8 (patch)
tree7aa6ee3b1ae97a50cd2bf84029539d3a28e009d9 /source3/smbd/open.c
parent088ca00b926894575e75a03756642b9726f421d7 (diff)
downloadsamba-8a338c65a1824ae8a93bef7bc8fac65684c285c8.tar.gz
samba-8a338c65a1824ae8a93bef7bc8fac65684c285c8.tar.bz2
samba-8a338c65a1824ae8a93bef7bc8fac65684c285c8.zip
s3:smbd: change set_file_oplock() to return NTSTATUS
Pair-Programmed-With: Volker Lendecke <vl@samba.org> Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Fri Jun 8 23:20:20 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/smbd/open.c')
-rw-r--r--source3/smbd/open.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 7708833f97..4581553be2 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -2408,7 +2408,8 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn,
* file structs.
*/
- if (!set_file_oplock(fsp, fsp->oplock_type)) {
+ status = set_file_oplock(fsp, fsp->oplock_type);
+ if (!NT_STATUS_IS_OK(status)) {
/*
* Could not get the kernel oplock or there are byte-range
* locks on the file.