aboutsummaryrefslogtreecommitdiffstats
path: root/backup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-30 07:18:03 +0000
committerWayne Davison <wayned@samba.org>2006-01-30 07:18:03 +0000
commit21955d9c929870d7b4b67698dfaa4978b18d2047 (patch)
tree50713f1999c573d5c1c40790a6a19235d47ad3de /backup.c
parenta0d9819f8c6ba64930d3858f7b01e4d9250d5369 (diff)
downloadandroid_external_rsync-21955d9c929870d7b4b67698dfaa4978b18d2047.tar.gz
android_external_rsync-21955d9c929870d7b4b67698dfaa4978b18d2047.tar.bz2
android_external_rsync-21955d9c929870d7b4b67698dfaa4978b18d2047.zip
Call robust_rename() with its newly-added arg.
Diffstat (limited to 'backup.c')
-rw-r--r--backup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/backup.c b/backup.c
index e5b83848..4669c7ee 100644
--- a/backup.c
+++ b/backup.c
@@ -160,8 +160,9 @@ static int make_bak_dir(char *fullpath)
/* robustly move a file, creating new directory structures if necessary */
static int robust_move(char *src, char *dst)
{
- if (robust_rename(src, dst, 0755) < 0 && (errno != ENOENT
- || make_bak_dir(dst) < 0 || robust_rename(src, dst, 0755) < 0))
+ if (robust_rename(src, dst, NULL, 0755) < 0
+ && (errno != ENOENT || make_bak_dir(dst) < 0
+ || robust_rename(src, dst, NULL, 0755) < 0))
return -1;
return 0;
}