1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:smbd: remove unnecessary variable readret from read_file()

Pair-Programmed-With: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Fri Jun  8 18:08:09 CEST 2012 on sn-devel-104
This commit is contained in:
Michael Adam 2012-06-08 16:06:24 +02:00
parent eb750d5458
commit 41d830ea4f

View File

@ -64,7 +64,7 @@ static bool read_from_write_cache(files_struct *fsp,char *data,off_t pos,size_t
ssize_t read_file(files_struct *fsp,char *data,off_t pos,size_t n)
{
ssize_t ret=0,readret;
ssize_t ret = 0;
/* you can't read from print files */
if (fsp->print_file) {
@ -87,15 +87,11 @@ ssize_t read_file(files_struct *fsp,char *data,off_t pos,size_t n)
fsp->fh->pos = pos;
if (n > 0) {
readret = SMB_VFS_PREAD(fsp,data,n,pos);
ret = SMB_VFS_PREAD(fsp,data,n,pos);
if (readret == -1) {
if (ret == -1) {
return -1;
}
if (readret > 0) {
ret += readret;
}
}
DEBUG(10,("read_file (%s): pos = %.0f, size = %lu, returned %lu\n",