aboutsummaryrefslogtreecommitdiffstats
path: root/errcode.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump the year to 2014.Wayne Davison2014-01-261-1/+1
|
* Update copyright year.Wayne Davison2013-01-191-1/+1
|
* More improvements for abnormal exits.Wayne Davison2009-11-081-2/+0
|
* Added notifications about error-exit values:Wayne Davison2009-11-071-0/+2
| | | | | | | | | | - The receiver notifies the generator if it is exiting with an error, and then, if it is a server, waits around for the generator to die. This ensures that the client side has time to read the error. - The generator or sender will notifiy the other side of the transfer of an error-exit value if protocol 31 is in effect. This will get rid of some "connection unexpectedly closed" errors that are really expected events due to a fatal exit on the other side.
* Include 2008 in the copyright years.Wayne Davison2008-03-011-1/+1
|
* Adding --contimeout=SECONDS option.Wayne Davison2007-11-281-0/+1
|
* Tweaking the license text a bit more.Wayne Davison2007-07-101-2/+3
|
* Switching to GPL 3.Wayne Davison2007-07-071-3/+2
|
* Further modifications to the copyright comment section.Wayne Davison2007-02-041-4/+3
|
* Updated the FSF's address to an even newer one.Wayne Davison2006-04-251-3/+3
|
* - Updated the address for the FSF in the opening comment.Wayne Davison2006-04-251-21/+21
| | | | | | | - Standardized the format of the opening comment, including adding a brief description of what's in the file for those that lacked it. - Added some missing copyright lines. - Some minor whitespace tweaks (in a few of the files).
* Added RERR_SIGNAL1 to separate SIGUSR1 from the rest of theWayne Davison2005-12-161-1/+2
| | | | signals that return RERR_SIGNAL.
* Changed RERR_CRASH to RERR_CRASHED.Wayne Davison2005-09-261-1/+1
|
* Defined RERR_CRASH and RERR_TERMINATED.Wayne Davison2005-09-261-0/+2
|
* Got rid of RERR_LOG_FAILURE.Wayne Davison2005-04-121-1/+0
|
* Added RERR_LOG_FAILURE define.Wayne Davison2005-03-151-0/+1
|
* Added RERR_DEL_LIMIT.Wayne Davison2005-03-051-0/+1
|
* 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.