From: Stelian Pop Date: Fri, 15 Nov 2002 09:49:39 +0000 (+0000) Subject: Added inode 7 to exclude list -> Excluding inode 7 (resize inode) from dump X-Git-Tag: release_0_4b32~2 X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=commitdiff_plain;h=c993d83a80c45bdf72ac623bd7f25766c6cb7682 Added inode 7 to exclude list -> Excluding inode 7 (resize inode) from dump --- diff --git a/CHANGES b/CHANGES index 7d5273e..2997fcb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -$Id: CHANGES,v 1.197 2002/11/15 09:25:25 stelian Exp $ +$Id: CHANGES,v 1.198 2002/11/15 09:49:39 stelian Exp $ Changes between versions 0.4b31 and 0.4b32 (released ?????????????) =================================================================== @@ -35,6 +35,11 @@ Changes between versions 0.4b31 and 0.4b32 (released ?????????????) to Philippe Troin for reporting this bug and providing the test cases. +7. Changed the wording when inodes are excluded from dump: + replaced 'Added inode 7 to exclude list' with + 'Excluding inode 7 (resize inode) from dump', as suggested + by Elliott Mitchell in a Debian bug report. + Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002) =================================================================== diff --git a/THANKS b/THANKS index bd8df1e..3ed5f87 100644 --- a/THANKS +++ b/THANKS @@ -1,4 +1,4 @@ -$Id: THANKS,v 1.69 2002/11/15 09:25:28 stelian Exp $ +$Id: THANKS,v 1.70 2002/11/15 09:49:39 stelian Exp $ Dump and restore were written by the people of the CSRG at the University of California, Berkeley. @@ -68,6 +68,7 @@ Greg Lutz greglutz@ix.netcom.com Eric Maisonobe virnet@nat.fr Andy Mentges amentges@jumpline.com David Miller davem@caip.rutgers.edu +Elliott Mitchell ehem@m5p.com David Monro davidm@cs.su.oz.au Dejan Muhamedagic dejan@quant-x.com Lukas Nellen L.Nellen@ThPhys.Uni-Heidelberg.DE diff --git a/dump/main.c b/dump/main.c index 7f46e75..508ec15 100644 --- a/dump/main.c +++ b/dump/main.c @@ -41,7 +41,7 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.76 2002/10/07 19:27:36 stelian Exp $"; + "$Id: main.c,v 1.77 2002/11/15 09:49:40 stelian Exp $"; #endif /* not lint */ #include @@ -1227,10 +1227,10 @@ do_exclude_ino(dump_ino_t ino, const char *reason) exit(X_STARTUP); } if (reason) - msg("Added inode %u to exclude list (%s)\n", + msg("Excluding inode %u (%s) from dump\n", ino, reason); else - msg("Added inode %u to exclude list\n", ino); + msg("Excluding inode %u from dump\n", ino); iexclude_list[iexclude_num++] = ino; } }