Index: ChangeLog =================================================================== RCS file: /usr/products/olsshare/cvs/amanda/src/tar/ChangeLog,v retrieving revision 1.1.1.1 diff -r1.1.1.1 ChangeLog 0a1,5 > 2000-02-08 Marc W. Mengel > > * src/create.c Don't complain about Stale NFS handles if we > are not crossing filesystems. > Index: THANKS =================================================================== RCS file: /usr/products/olsshare/cvs/amanda/src/tar/THANKS,v retrieving revision 1.1.1.1 diff -c -r1.1.1.1 THANKS *** THANKS 2000/01/05 20:31:32 1.1.1.1 --- THANKS 2000/02/08 23:14:05 *************** *** 281,286 **** --- 281,287 ---- Manuel Munier Manuel.Munier@loria.fr Marc Boucher marc@cam.org Marc Ewing marc@redhat.com + Marc Mengel mengel@fnal.gov Marcin Matuszewski marcin@frodo.nask.org.pl Marcus Daniels marcus@sysc.pdx.edu Mark Bynum bynum@cennas.nhmfl.gov *** src/create.c.orig Tue Feb 8 16:56:12 2000 --- src/create.c Tue Feb 8 16:56:15 2000 *************** *** 1091,1100 **** f = open (p, O_RDONLY | O_BINARY); if (f < 0) { ! WARN ((0, errno, _("Cannot add file %s"), p)); ! if (!ignore_failed_read_option) ! exit_status = TAREXIT_FAILURE; ! return; } } --- 1091,1110 ---- f = open (p, O_RDONLY | O_BINARY); if (f < 0) { ! ! /* ! ** don't complain about stale NFS handles if ! ** we weren't supposed to cross filesystems anyhow... ! */ ! ! if (!(ESTALE == errno && one_file_system_option)) ! { ! WARN ((0, errno, _("Cannot add file %s"), p)); ! if (!ignore_failed_read_option) ! exit_status = TAREXIT_FAILURE; ! } ! return; ! } }