From: Wayne Davison Date: Tue, 1 Jul 2003 21:45:07 +0000 (+0000) Subject: Call make_file() using the revised arg syntax and new defines. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/af1d91c562dba2491f31dc32ce35aa413c7b61da Call make_file() using the revised arg syntax and new defines. --- diff --git a/backup.c b/backup.c index 0fb6373a..97ec957e 100644 --- a/backup.c +++ b/backup.c @@ -198,7 +198,7 @@ static int keep_backup(char *fname) if (do_stat (fname, &st)) return 1; #endif - file = make_file(-1, fname, NULL, 1); + file = make_file(fname, NULL, NO_EXCLUDES); /* the file could have disappeared */ if (!file) return 1; @@ -294,4 +294,3 @@ int make_backup(char *fname) else return (make_simple_backup(fname)); } -