Hi,

I am having problems with incremental backups with
--listed-incremental and the --one-file-system option in 1.25 which,
essentially, does nothing. For example,

tar -c -f backup.tgz --listed-incremental=/backup/index --one-file-system /

only adds the directory "/", but no contents. I think this is because
of line 429 in the file "incremen.c" which should read

dev_t device = st->parent ? st->parent->stat.st_dev : st->stat.st_dev;

instead of

dev_t device = st->parent ? st->parent->stat.st_dev : 0;

since otherwise all paths which haven't had a parent in the current
backup will be ignored.

Martin

Reply via email to