aboutsummaryrefslogtreecommitdiffstats
path: root/backup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-20 21:21:36 +0000
committerWayne Davison <wayned@samba.org>2006-01-20 21:21:36 +0000
commit3de73827d7034a8c47d06620ebda0136b2c7fbe2 (patch)
tree69225a6b6d69141e61545e8264092d6e555f05c7 /backup.c
parent458aeea4a6158e8bfad5ba93ad482f3760260f07 (diff)
downloadandroid_external_rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.tar.gz
android_external_rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.tar.bz2
android_external_rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.zip
Call make_file() with one more arg (the base flags).
Diffstat (limited to 'backup.c')
-rw-r--r--backup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backup.c b/backup.c
index 15a8f97e..d36524a8 100644
--- a/backup.c
+++ b/backup.c
@@ -180,7 +180,7 @@ static int keep_backup(char *fname)
if (do_lstat(fname, &st) < 0)
return 1;
- if (!(file = make_file(fname, NULL, NULL, NO_FILTERS)))
+ if (!(file = make_file(fname, NULL, NULL, 0, NO_FILTERS)))
return 1; /* the file could have disappeared */
if (!(buf = get_backup_name(fname)))