aboutsummaryrefslogtreecommitdiffstats
path: root/backup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-19 21:16:40 +0000
committerWayne Davison <wayned@samba.org>2006-01-19 21:16:40 +0000
commitb435d7174cb971e85e4199999c748d51ba5d0a18 (patch)
treeedb75a83b75a45a347b668188ff4dc4037843b88 /backup.c
parent2a59d2cc3178eef8b3b1f41867889b4dee763f24 (diff)
downloadandroid_external_rsync-b435d7174cb971e85e4199999c748d51ba5d0a18.tar.gz
android_external_rsync-b435d7174cb971e85e4199999c748d51ba5d0a18.tar.bz2
android_external_rsync-b435d7174cb971e85e4199999c748d51ba5d0a18.zip
Added a new arg to the make_file() call.
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 e34b7be9..15a8f97e 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, NO_FILTERS)))
+ if (!(file = make_file(fname, NULL, NULL, NO_FILTERS)))
return 1; /* the file could have disappeared */
if (!(buf = get_backup_name(fname)))