diff options
author | Wayne Davison <wayned@samba.org> | 2006-01-20 21:21:36 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-01-20 21:21:36 +0000 |
commit | 3de73827d7034a8c47d06620ebda0136b2c7fbe2 (patch) | |
tree | 69225a6b6d69141e61545e8264092d6e555f05c7 /backup.c | |
parent | 458aeea4a6158e8bfad5ba93ad482f3760260f07 (diff) | |
download | rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.tar.gz rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.tar.bz2 rsync-3de73827d7034a8c47d06620ebda0136b2c7fbe2.zip |
Call make_file() with one more arg (the base flags).
Diffstat (limited to 'backup.c')
-rw-r--r-- | backup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))) |