diff options
author | Michael Adam <obnox@samba.org> | 2008-01-07 14:26:00 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-07 15:59:02 +0100 |
commit | 670909cb07e38a06bf5db12342b3b1189f0e1ab7 (patch) | |
tree | ba1a45db0387a252dc22c77b42fdfa642288562b /source3/smbd/open.c | |
parent | e614dec27f33c932c6c29c806d567fd6015cd5e6 (diff) | |
download | samba-670909cb07e38a06bf5db12342b3b1189f0e1ab7.tar.gz samba-670909cb07e38a06bf5db12342b3b1189f0e1ab7.tar.xz samba-670909cb07e38a06bf5db12342b3b1189f0e1ab7.zip |
Remove redundant parameter fd from SMB_VFS_FCHOWN().
Michael
(This used to be commit fbb193db3e0dc51cb000ae406a68bc547f31d9ab)
Diffstat (limited to 'source3/smbd/open.c')
-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 c7b053d5313..036e3e12a2d 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -102,7 +102,7 @@ static void change_file_owner_to_parent(connection_struct *conn, } become_root(); - ret = SMB_VFS_FCHOWN(fsp, fsp->fh->fd, parent_st.st_uid, (gid_t)-1); + ret = SMB_VFS_FCHOWN(fsp, parent_st.st_uid, (gid_t)-1); unbecome_root(); if (ret == -1) { DEBUG(0,("change_file_owner_to_parent: failed to fchown " |