summaryrefslogtreecommitdiff
path: root/errcode.h
Commit message (Collapse)AuthorAgeFilesLines
* Added RERR_VANISHED.Wayne Davison2003-12-151-1/+2
|
* Added reminder to update rsync.yo manpage when adding toJ.W. Schultz2003-10-251-1/+1
| | | | exit codes.
* Add RERR_OK == 0Martin Pool2002-04-091-0/+1
|
* Make batch mode actually work and add man page documentation. From Jos Backus.David Dykstra2002-02-061-0/+1
|
* improved error handling again. Now we report messages for the remoteAndrew Tridgell2001-03-231-0/+17
| | | | shell failing and propogate errors in a better fashion
* If an error occurs, print an explanatory string ratherMartin Pool2000-11-101-1/+23
| | | | than just an RERR code.
* Fix confusion between RERR_NOSUPPORT and RERR_UNSUPPORTED for exit codesDavid Dykstra1998-11-041-1/+1
| | | | | | | | | that indicate a feature is not supported. Two places that are normally ifdefed out used RERR_UNSUPPORTED whereas one other place and errcode.h used RERR_NOSUPPORT. Changed them all to consistently use RERR_UNSUPPORTED. The two things that had the bad values were #ifndef SUPPORT_LINKS and #ifdef NO_INT64. The former is probably for non-Unix operating systems and the latter was at least on the default Unixware compiler.
* patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to addAndrew Tridgell1998-11-031-0/+18
different exit codes for different conditions.