summaryrefslogtreecommitdiff
path: root/hlink.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-01-03 12:00:02 -0800
committerWayne Davison <wayned@samba.org>2009-01-03 12:02:47 -0800
commit21cddef2b460098f5289b9cdbd592bf8f0f9e759 (patch)
treee19d41350ae9753ac69ac0cb86fa3cc3042be8fd /hlink.c
parentb3bf9b9df95137a3a43248be9599d919b04877af (diff)
downloadrsync-21cddef2b460098f5289b9cdbd592bf8f0f9e759.tar.gz
Improved the backup code:
- Backups do not interfere with an atomic update (when possible). - Backing up a file will remove a directory that is in the way and visa versa. - Unify the backup-dir and non-backup-dir code in backup.c. - Improved the backup tests a little bit.
Diffstat (limited to 'hlink.c')
-rw-r--r--hlink.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hlink.c b/hlink.c
index 6c9010d8..c9eb33ae 100644
--- a/hlink.c
+++ b/hlink.c
@@ -217,6 +217,7 @@ static int maybe_hard_link(struct file_struct *file, int ndx,
const char *realname, int itemizing, enum logcode code)
{
if (statret == 0) {
+ int ok = 0;
if (sxp->st.st_dev == old_stp->st_dev
&& sxp->st.st_ino == old_stp->st_ino) {
if (itemizing) {
@@ -229,10 +230,9 @@ static int maybe_hard_link(struct file_struct *file, int ndx,
file->flags |= FLAG_HLINK_DONE;
return 0;
}
- if (make_backups > 0) {
- if (!make_backup(fname))
- return -1;
- } else if (robust_unlink(fname)) {
+ if (make_backups > 0 && (ok = make_backup(fname, True)) == 0)
+ return -1;
+ if (ok != 1 && robust_unlink(fname) && errno != ENOENT) {
rsyserr(FERROR_XFER, errno, "unlink %s failed",
full_fname(fname));
return -1;