diff options
author | Volker Lendecke <vl@samba.org> | 2008-10-09 15:25:17 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-10-13 19:32:37 +0200 |
commit | 3bbe5e88e55a92a177260310daffd6deae551ba3 (patch) | |
tree | 4c84fbbea5f060853880d4cc69c0a2df19ce0ecc /source3/include | |
parent | 88f1d885eabc9a723351f38e9f2dc83933cfdea1 (diff) | |
download | samba-3bbe5e88e55a92a177260310daffd6deae551ba3.tar.gz samba-3bbe5e88e55a92a177260310daffd6deae551ba3.tar.bz2 samba-3bbe5e88e55a92a177260310daffd6deae551ba3.zip |
Pass struct smb_request to file_fsp
The goal is to get rid of the chain_fsp global variable
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 7dc0319e7d..a36a725b4f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -9590,7 +9590,7 @@ files_struct *file_find_print(void); void file_sync_all(connection_struct *conn); void file_free(files_struct *fsp); files_struct *file_fnum(uint16 fnum); -files_struct *file_fsp(uint16 fid); +files_struct *file_fsp(struct smb_request *req, uint16 fid); void file_chain_reset(void); NTSTATUS dup_file_fsp(files_struct *fsp, uint32 access_mask, |