1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-04 16:58:42 +03:00

Remove redundant connection_struct from fd_close_posix() parameter list.

Michael
(This used to be commit f3365b74ac016eaee1e82eef769dd618af5df201)
This commit is contained in:
Michael Adam 2007-12-22 01:49:29 +01:00
parent 98bc591c4f
commit 4773973300
2 changed files with 3 additions and 3 deletions

View File

@ -607,14 +607,14 @@ static size_t get_posix_pending_close_entries(TALLOC_CTX *mem_ctx,
to delete all locks on this fsp before this function is called.
****************************************************************************/
NTSTATUS fd_close_posix(struct connection_struct *conn, files_struct *fsp)
NTSTATUS fd_close_posix(struct files_struct *fsp)
{
int saved_errno = 0;
int ret;
int *fd_array = NULL;
size_t count, i;
if (!lp_locking(fsp->conn->params) || !lp_posix_locking(conn->params)) {
if (!lp_locking(fsp->conn->params) || !lp_posix_locking(fsp->conn->params)) {
/*
* No locking or POSIX to worry about or we want POSIX semantics
* which will lose all locks on all fd's open on this dev/inode,

View File

@ -78,7 +78,7 @@ NTSTATUS fd_close(struct connection_struct *conn, files_struct *fsp)
if (fsp->fh->ref_count > 1) {
return NT_STATUS_OK; /* Shared handle. Only close last reference. */
}
return fd_close_posix(conn, fsp);
return fd_close_posix(fsp);
}
/****************************************************************************