]> git.wh0rd.org - dump.git/commitdiff
Added inode 7 to exclude list -> Excluding inode 7 (resize inode) from dump
authorStelian Pop <stelian@popies.net>
Fri, 15 Nov 2002 09:49:39 +0000 (09:49 +0000)
committerStelian Pop <stelian@popies.net>
Fri, 15 Nov 2002 09:49:39 +0000 (09:49 +0000)
CHANGES
THANKS
dump/main.c

diff --git a/CHANGES b/CHANGES
index 7d5273e54ed134e0693285323f927ac073a50a00..2997fcb8406185b623d39954ea38784a3bf0f5e6 100644 (file)
--- 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 <phil@fifi.org> 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 <ehem@m5p.com> in a Debian bug report.
+
 Changes between versions 0.4b30 and 0.4b31 (released July 30, 2002)
 ===================================================================
 
diff --git a/THANKS b/THANKS
index bd8df1eaa94c2432c0f88f9164c30f40e32ee4b5..3ed5f87a02ce1eab5c526117fac7ac901b3ebe4c 100644 (file)
--- 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
index 7f46e753e5fd1ba49539a2e9eb8da3b4d6b72fe5..508ec15fab28d3734a7e8bcc90b6535ffef42bf6 100644 (file)
@@ -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 <config.h>
@@ -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;
        }
 }