summaryrefslogtreecommitdiff
path: root/fileio.c
Commit message (Collapse)AuthorAgeFilesLines
* More signedness fixes; should be harmless.Martin Pool2002-01-251-4/+6
|
* Signedness security patch from Sebastian Krahmer <krahmer@suse.de> --Martin Pool2002-01-231-2/+2
| | | | | | | in some cases we were not sufficiently careful about reading integers from the network. Also, make sure log messages are always nul-terminated.
* no longer use mmap() in rsync because of the risk of a SIGBUS whenAndrew Tridgell1998-12-301-89/+84
| | | | | | | another program (such as a mailer) truncates a file. To offset the speed loss I have rewritten the map_ptr() code to make much better use of read().
* patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to addAndrew Tridgell1998-11-031-2/+2
| | | | different exit codes for different conditions.
* heaps of cleanup in the io code.Andrew Tridgell1998-05-271-0/+218
we no longer use non-blocking IO, instead it uses select a lot more, being careful to always allow for reading whenever a valid read fd is available and chcking timeouts. also split the file io calls into fileio.c