| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use the new device defines: F_RDEV_P(), DEV_MAJOR(), and DEV_MINOR(). | Wayne Davison | 2006-12-07 | 1 | -1/+2 |
| | | |||||
| * | Tweaked some externs. | Wayne Davison | 2006-12-05 | 1 | -2/+0 |
| | | |||||
| * | Moved an extern. | Wayne Davison | 2006-12-03 | 1 | -1/+1 |
| | | |||||
| * | - Typical tranfers now save 12-20 bytes per file because several vars | Wayne Davison | 2006-12-03 | 1 | -16/+21 |
| | | | | | | | | were moved out of file_struct into an optional member-var setup. - Renamed and reorganized the FLAG_* defines. - Use NDX_DONE instead of a literal -1 when sending/checking the end-of-phase index value. | ||||
| * | Added some more "const" prefixes to some "char *" vars. | Wayne Davison | 2006-11-28 | 1 | -6/+6 |
| | | |||||
| * | The call to do_chmod() needed to be conditional. | Wayne Davison | 2006-11-21 | 1 | -0/+2 |
| | | |||||
| * | Updated the FSF's address to an even newer one. | Wayne Davison | 2006-04-25 | 1 | -3/+3 |
| | | |||||
| * | - Updated the address for the FSF in the opening comment. | Wayne Davison | 2006-04-25 | 1 | -18/+19 |
| | | | | | | | | - 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). | ||||
| * | Got rid of unused externs. | Wayne Davison | 2006-02-24 | 1 | -2/+0 |
| | | |||||
| * | Call mkdir_defmode() instead of do_mkdir(). | Wayne Davison | 2006-02-24 | 1 | -3/+2 |
| | | |||||
| * | Call robust_rename() with its newly-added arg. | Wayne Davison | 2006-01-30 | 1 | -2/+3 |
| | | |||||
| * | Call the new name of set_perms(): set_file_attrs(). | Wayne Davison | 2006-01-29 | 1 | -1/+1 |
| | | |||||
| * | Handle separated devices and special files. | Wayne Davison | 2006-01-26 | 1 | -1/+3 |
| | | |||||
| * | Call make_file() with one more arg (the base flags). | Wayne Davison | 2006-01-20 | 1 | -1/+1 |
| | | |||||
| * | Added a new arg to the make_file() call. | Wayne Davison | 2006-01-19 | 1 | -1/+1 |
| | | |||||
| * | Got rid of calls to (the soon to vanish) safe_fname() function. | Wayne Davison | 2006-01-13 | 1 | -8/+7 |
| | | |||||
| * | Indent the "failure:" label away from column 0. | Wayne Davison | 2005-11-10 | 1 | -1/+1 |
| | | |||||
| * | Fixed a problem in the backing up of symlinks and devices: we | Wayne Davison | 2005-06-10 | 1 | -20/+21 |
| | | | | | | | | | need to remove any old symlink/device/file to create the backup. Also fixed a couple minor logic errors in the handling of symlinks and devices. NOTE: the code still doesn't handle the changing of a name from a dir to a non-dir or visa versa (which is a very old deficiency in the code). | ||||
| * | In make_simple_backup(), if the rename() failed because we tried | Wayne Davison | 2005-02-22 | 1 | -9/+23 |
| | | | | | to rename a directory over a file or visa versa, try to handle it. | ||||
| * | John E. Malmberg convinced me to standardize on #ifs for defined | Wayne Davison | 2005-02-14 | 1 | -1/+1 |
| | | | | | values instead of non-zero. | ||||
| * | Adding more calls to safe_fname(). | Wayne Davison | 2005-02-07 | 1 | -8/+12 |
| | | |||||
| * | Renamed several exclude-related functions/variables using new | Wayne Davison | 2005-01-25 | 1 | -1/+1 |
| | | | | | filter terminology. | ||||
| * | No need for conditional code around do_lstat() anymore. | Wayne Davison | 2005-01-19 | 1 | -6/+1 |
| | | |||||
| * | The device-handling code is no longer omitted based on HAVE_MKNOD | Wayne Davison | 2004-10-01 | 1 | -2/+0 |
| | | | | | | (this is because do_mknod() might be using a different function to handle fifos and sockets without the help of mknod(). | ||||
| * | Output the same backup-message prefix when verbose > 1 regardless of | Wayne Davison | 2004-09-20 | 1 | -1/+1 |
| | | | | | the setting of --backup-dir. | ||||
| * | Got rid of a superfluous static buffer. | Wayne Davison | 2004-09-20 | 1 | -5/+3 |
| | | |||||
| * | Moved the code that determines the backup filename into a new function | Wayne Davison | 2004-09-07 | 1 | -33/+43 |
| | | | | | named get_backup_name(). | ||||
| * | When we say we're skipping a non-regular file, actually skip it. | Wayne Davison | 2004-09-07 | 1 | -0/+1 |
| | | |||||
| * | Made a comment better. | Wayne Davison | 2004-07-26 | 1 | -1/+1 |
| | | |||||
| * | If we sucessfully renamed a file that has multiple links to it, unlink() | Wayne Davison | 2004-07-22 | 1 | -1/+6 |
| | | | | | | it to ensure that rename() didn't lie to us (which it does if you try to rename() a file over another link to the same file). | ||||
| * | The mkdir code should be using do_stat(), not do_lstat() to copy | Wayne Davison | 2004-06-10 | 1 | -3/+5 |
| | | | | | each existing dir's mode & owner info. | ||||
| * | Changed rprintf() calls that included strerror() to use rsyserr(). | Wayne Davison | 2004-05-15 | 1 | -18/+18 |
| | | |||||
| * | Don't force the modtime on our backup dirs -- the dirs in the | Wayne Davison | 2004-05-13 | 1 | -1/+0 |
| | | | | | backup hierarchy should have their own timestamps. | ||||
| * | Calls to make_bak_dir() should only happen when we fail to create a | Wayne Davison | 2004-05-04 | 1 | -8/+14 |
| | | | | | file/dir/etc. with errno == ENOENT. | ||||
| * | Check robust_rename()'s return value using < 0. | Wayne Davison | 2004-03-13 | 1 | -2/+2 |
| | | |||||
| * | A couple fixes from Shinichi Maruyama. | Wayne Davison | 2004-02-23 | 1 | -3/+3 |
| | | |||||
| * | Moved the EXDEV handling into robust_rename(). | Wayne Davison | 2004-02-17 | 1 | -36/+4 |
| | | |||||
| * | - Revised and optimized the directory-making code. | Wayne Davison | 2004-02-11 | 1 | -98/+83 |
| | | | | | - Optimized the keep_backup() code. | ||||
| * | Got rid of hard-link message (since I don't think it was ever | Wayne Davison | 2004-02-11 | 1 | -3/+0 |
| | | | | | output in older rsync versions). | ||||
| * | Simplified test for hardlink in make_backup debug message to | J.W. Schultz | 2004-02-10 | 1 | -5/+2 |
| | | | | | avoid core-dump. | ||||
| * | Make idev, hlink and file_struct + strings use allocation | J.W. Schultz | 2004-02-10 | 1 | -2/+3 |
| | | | | | pools. | ||||
| * | Changed args to make_file() and free_file(). | Wayne Davison | 2004-02-02 | 1 | -3/+2 |
| | | |||||
| * | Changed F_HEAD to F_HLINDEX. | Wayne Davison | 2004-01-25 | 1 | -1/+2 |
| | | |||||
| * | Use new stringjoin() and pathjoin() functions. | Wayne Davison | 2004-01-20 | 1 | -19/+16 |
| | | |||||
| * | Changed the hard-link check. | Wayne Davison | 2004-01-12 | 1 | -1/+2 |
| | | |||||
| * | Use the new union-ified flist_struct values. | Wayne Davison | 2004-01-11 | 1 | -5/+5 |
| | | |||||
| * | A few formatting tweaks. | Wayne Davison | 2004-01-05 | 1 | -61/+61 |
| | | |||||
| * | Improved file-related error messages by using the new | Wayne Davison | 2003-09-11 | 1 | -12/+15 |
| | | | | | full_fname() function. | ||||
| * | Make extra backup dirs mode 0700, not 0755. | Wayne Davison | 2003-08-22 | 1 | -1/+1 |
| | | |||||
| * | Use the new backup_suffix_len and backup_dir_len variables. Got rid | Wayne Davison | 2003-08-01 | 1 | -15/+8 |
| | | | | | of the suffix_specified kludge. | ||||
