diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-27 03:42:36 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-09-28 07:36:16 +0200 |
commit | 25ca1cd1a85ca5bd99acfd2f54067c397d8fcb13 (patch) | |
tree | 775da7c2103e1038a3b4ff6615b773242c8b256b /source3/smbd/files.c | |
parent | 6a1c4bad131ceec025e7c8d40fdda3f01ce734c1 (diff) | |
download | samba-25ca1cd1a85ca5bd99acfd2f54067c397d8fcb13.tar.gz samba-25ca1cd1a85ca5bd99acfd2f54067c397d8fcb13.tar.xz samba-25ca1cd1a85ca5bd99acfd2f54067c397d8fcb13.zip |
s3: Remove smbd_server_conn from file_close_pid
Diffstat (limited to 'source3/smbd/files.c')
-rw-r--r-- | source3/smbd/files.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/smbd/files.c b/source3/smbd/files.c index cf6f57ea2f..f24d903daa 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -155,11 +155,12 @@ void file_close_conn(connection_struct *conn) Close all open files for a pid and a vuid. ****************************************************************************/ -void file_close_pid(uint16 smbpid, int vuid) +void file_close_pid(struct smbd_server_connection *sconn, uint16 smbpid, + int vuid) { files_struct *fsp, *next; - for (fsp=smbd_server_conn->files;fsp;fsp=next) { + for (fsp=sconn->files;fsp;fsp=next) { next = fsp->next; if ((fsp->file_pid == smbpid) && (fsp->vuid == vuid)) { close_file(NULL, fsp, SHUTDOWN_CLOSE); |