]> git.wh0rd.org - dump.git/commitdiff
Fix dump -w on ext4 partitions.
authorStelian Pop <stelian@popies.net>
Mon, 6 Dec 2010 14:13:59 +0000 (14:13 +0000)
committerStelian Pop <stelian@popies.net>
Mon, 6 Dec 2010 14:13:59 +0000 (14:13 +0000)
CHANGES
dump/optr.c

diff --git a/CHANGES b/CHANGES
index e366addc1d7979cd52810bd068728e7a45283982..167255487a93eb2fd63013d8e427b3b5b2098f29 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,13 @@
-$Id: CHANGES,v 1.317 2010/06/11 11:29:27 stelian Exp $
+$Id: CHANGES,v 1.318 2010/12/06 14:13:59 stelian Exp $
+
+
+Changes between versions 0.4b43 and 0.4b44 (released ?????????????)
+===================================================================
+
+1.     Recognize ext4 partitions in dump -w commands (Sourceforge
+       bug #3125587, RedHat bug #658890). Thanks to Jan Görig
+       <jgorig@users.sourceforge.net> for reporting the bug and
+       submitting the patch.
 
 Changes between versions 0.4b42 and 0.4b43 (released June 11, 2010)
 ===================================================================
 
 Changes between versions 0.4b42 and 0.4b43 (released June 11, 2010)
 ===================================================================
index 056a6a6c123f9e7f3cd6164be37c451499139a3b..5dd85df55d833d3cebf8e1bc4bc1fac4c041ad74 100644 (file)
@@ -37,7 +37,7 @@
 
 #ifndef lint
 static const char rcsid[] =
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: optr.c,v 1.40 2006/03/14 11:09:51 stelian Exp $";
+       "$Id: optr.c,v 1.41 2010/12/06 14:13:59 stelian Exp $";
 #endif /* not lint */
 
 #include <config.h>
 #endif /* not lint */
 
 #include <config.h>
@@ -78,7 +78,7 @@ int   datesort __P((const void *, const void *));
 static void sendmes __P((const char *, const char *));
 
 /* List of filesystem types that we can dump (same ext2 on-disk format) */
 static void sendmes __P((const char *, const char *));
 
 /* List of filesystem types that we can dump (same ext2 on-disk format) */
-static char *fstypes[] = { "ext2", "ext3", "InterMezzo", NULL };
+static char *fstypes[] = { "ext2", "ext3", "ext4", "InterMezzo", NULL };
 
 /*
  *     Query the operator; This previously-fascist piece of code
 
 /*
  *     Query the operator; This previously-fascist piece of code