diff options
author | Jeremy Allison <jra@samba.org> | 2009-07-10 18:23:00 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-07-10 18:23:00 -0700 |
commit | 2000421c592b672898f85758638be74d8485da1e (patch) | |
tree | 9bd5f3a3ad130d855bf2233d39cbbe6c2edf7f95 /source3/smbd/fileio.c | |
parent | 361aa19e69d4176dd8c30f485cc637cd33308d62 (diff) | |
download | samba-2000421c592b672898f85758638be74d8485da1e.tar.gz |
Remove reply_unixerror() - no longer needed. Should make Metze's refactoring a lot easier.
Jeremy.
Diffstat (limited to 'source3/smbd/fileio.c')
-rw-r--r-- | source3/smbd/fileio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/fileio.c b/source3/smbd/fileio.c index 0c13b845df8..60cef09b3ba 100644 --- a/source3/smbd/fileio.c +++ b/source3/smbd/fileio.c @@ -57,6 +57,7 @@ ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n) /* you can't read from print files */ if (fsp->print_file) { + errno = EBADF; return -1; } |