diff options
author | Michael Adam <obnox@samba.org> | 2008-01-08 10:51:40 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-08 10:51:40 +0100 |
commit | 9f691df852581b1ae4fab7cb9907606f4dcab291 (patch) | |
tree | e7e7e8930ddc2c7ef5512228182d496774c268cd /source3/smbd | |
parent | 50ee744fa445b74136a8f2cef36c2b48ba7ee5f6 (diff) | |
download | samba-9f691df852581b1ae4fab7cb9907606f4dcab291.tar.gz samba-9f691df852581b1ae4fab7cb9907606f4dcab291.tar.bz2 samba-9f691df852581b1ae4fab7cb9907606f4dcab291.zip |
Remove redundant parameter fd from SMB_VFS_FLISTXATTR().
Michael
(This used to be commit 167649b3b8bc293f8434ffc9fb5f80463e4e75be)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/trans2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 42914298fa..2958985b02 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -187,7 +187,7 @@ static struct ea_list *get_ea_list_from_file(TALLOC_CTX *mem_ctx, connection_str } if (fsp && fsp->fh->fd != -1) { - sizeret = SMB_VFS_FLISTXATTR(fsp, fsp->fh->fd, ea_namelist, ea_namelist_size); + sizeret = SMB_VFS_FLISTXATTR(fsp, ea_namelist, ea_namelist_size); } else { sizeret = SMB_VFS_LISTXATTR(conn, fname, ea_namelist, ea_namelist_size); } |