diff options
author | Michael Adam <obnox@samba.org> | 2007-12-22 01:49:29 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-22 02:01:32 +0100 |
commit | 4773973300d9b4c6d46bdeefd57d200378f6cec3 (patch) | |
tree | daa4b2e61bb8e89dd14c161cd80233ab6662d4f2 /source3/smbd | |
parent | 98bc591c4fac3a26796c596b55b735739d96c76b (diff) | |
download | samba-4773973300d9b4c6d46bdeefd57d200378f6cec3.tar.gz samba-4773973300d9b4c6d46bdeefd57d200378f6cec3.tar.bz2 samba-4773973300d9b4c6d46bdeefd57d200378f6cec3.zip |
Remove redundant connection_struct from fd_close_posix() parameter list.
Michael
(This used to be commit f3365b74ac016eaee1e82eef769dd618af5df201)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index b83d6844d6..743f040911 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -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); } /**************************************************************************** |