summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-07 10:15:08 +0100
committerMichael Adam <obnox@samba.org>2008-01-07 15:59:01 +0100
commit6f657c873efa4779e762a8f9ede97e19da6fb7ec (patch)
tree0cccf57b250bfd327d182e1b407fe15a82d07c93 /source3/smbd/reply.c
parenta56b417809805f8872c1e3238cce5d006d6189e4 (diff)
downloadsamba-6f657c873efa4779e762a8f9ede97e19da6fb7ec.tar.gz
samba-6f657c873efa4779e762a8f9ede97e19da6fb7ec.tar.bz2
samba-6f657c873efa4779e762a8f9ede97e19da6fb7ec.zip
Remove redundant parameter fd from SMB_VFS_LSEEK().
Michael (This used to be commit df929796f2698698d2875227bda8500589cca2df)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r--source3/smbd/reply.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index d5e683ca3c..910e3a27a6 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -4091,7 +4091,7 @@ void reply_lseek(struct smb_request *req)
}
if (umode == SEEK_END) {
- if((res = SMB_VFS_LSEEK(fsp,fsp->fh->fd,startpos,umode)) == -1) {
+ if((res = SMB_VFS_LSEEK(fsp,startpos,umode)) == -1) {
if(errno == EINVAL) {
SMB_OFF_T current_pos = startpos;
SMB_STRUCT_STAT sbuf;
@@ -4105,7 +4105,7 @@ void reply_lseek(struct smb_request *req)
current_pos += sbuf.st_size;
if(current_pos < 0)
- res = SMB_VFS_LSEEK(fsp,fsp->fh->fd,0,SEEK_SET);
+ res = SMB_VFS_LSEEK(fsp,0,SEEK_SET);
}
}
@@ -6052,7 +6052,7 @@ NTSTATUS copy_file(TALLOC_CTX *ctx,
}
if ((ofun&3) == 1) {
- if(SMB_VFS_LSEEK(fsp2,fsp2->fh->fd,0,SEEK_END) == -1) {
+ if(SMB_VFS_LSEEK(fsp2,0,SEEK_END) == -1) {
DEBUG(0,("copy_file: error - vfs lseek returned error %s\n", strerror(errno) ));
/*
* Stop the copy from occurring.