summaryrefslogtreecommitdiff
path: root/errcode.h
AgeCommit message (Collapse)AuthorFilesLines
2008-03-01Include 2008 in the copyright years.Wayne Davison1-1/+1
2007-11-28Adding --contimeout=SECONDS option.Wayne Davison1-0/+1
2007-07-10Tweaking the license text a bit more.Wayne Davison1-2/+3
2007-07-07Switching to GPL 3.Wayne Davison1-3/+2
2007-02-04Further modifications to the copyright comment section.Wayne Davison1-4/+3
2006-04-25Updated the FSF's address to an even newer one.Wayne Davison1-3/+3
2006-04-25- Updated the address for the FSF in the opening comment.Wayne Davison1-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).
2005-12-16Added RERR_SIGNAL1 to separate SIGUSR1 from the rest of theWayne Davison1-1/+2
signals that return RERR_SIGNAL.
2005-09-26Changed RERR_CRASH to RERR_CRASHED.Wayne Davison1-1/+1
2005-09-26Defined RERR_CRASH and RERR_TERMINATED.Wayne Davison1-0/+2
2005-04-12Got rid of RERR_LOG_FAILURE.Wayne Davison1-1/+0
2005-03-15Added RERR_LOG_FAILURE define.Wayne Davison1-0/+1
2005-03-05Added RERR_DEL_LIMIT.Wayne Davison1-0/+1
2003-12-15Added RERR_VANISHED.Wayne Davison1-1/+2
2003-10-25Added reminder to update rsync.yo manpage when adding toJ.W. Schultz1-1/+1
exit codes.
2002-04-09Add RERR_OK == 0Martin Pool1-0/+1
2002-02-06Make batch mode actually work and add man page documentation. From Jos Backus.David Dykstra1-0/+1
2001-03-23improved error handling again. Now we report messages for the remoteAndrew Tridgell1-0/+17
shell failing and propogate errors in a better fashion
2000-11-10If an error occurs, print an explanatory string ratherMartin Pool1-1/+23
than just an RERR code.
1998-11-04Fix confusion between RERR_NOSUPPORT and RERR_UNSUPPORTED for exit codesDavid Dykstra1-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.
1998-11-03patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to addAndrew Tridgell1-0/+18
different exit codes for different conditions.