summaryrefslogtreecommitdiff
path: root/source4/ntvfs/common/opendb.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-02-27 22:16:55 +0100
committerStefan Metzmacher <metze@samba.org>2008-02-28 08:11:04 +0100
commitbc1b595555bd667755291184aa380b011ed51795 (patch)
treec0532cfc70c810de0a9150daa7bd161fdebfe7fc /source4/ntvfs/common/opendb.c
parent9028ecca22713d4069e6f610b546fd8d60756b81 (diff)
downloadsamba-bc1b595555bd667755291184aa380b011ed51795.tar.gz
samba-bc1b595555bd667755291184aa380b011ed51795.tar.bz2
samba-bc1b595555bd667755291184aa380b011ed51795.zip
opendb: only return delete_on_close on odb_get_delete_on_close()
metze (This used to be commit e699633db2d377a9077ff490208da277e250239b)
Diffstat (limited to 'source4/ntvfs/common/opendb.c')
-rw-r--r--source4/ntvfs/common/opendb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/ntvfs/common/opendb.c b/source4/ntvfs/common/opendb.c
index 0b11f9dac5..d8cb67686b 100644
--- a/source4/ntvfs/common/opendb.c
+++ b/source4/ntvfs/common/opendb.c
@@ -155,10 +155,9 @@ _PUBLIC_ NTSTATUS odb_set_delete_on_close(struct odb_lock *lck, bool del_on_clos
people still have the file open
*/
_PUBLIC_ NTSTATUS odb_get_delete_on_close(struct odb_context *odb,
- DATA_BLOB *key, bool *del_on_close,
- int *open_count, char **path)
+ DATA_BLOB *key, bool *del_on_close)
{
- return ops->odb_get_delete_on_close(odb, key, del_on_close, open_count, path);
+ return ops->odb_get_delete_on_close(odb, key, del_on_close);
}