From 531db7127cdd4c02387e11b5be59a214b1c4515d Mon Sep 17 00:00:00 2001 From: Stelian Pop Date: Mon, 6 Dec 2010 14:13:59 +0000 Subject: [PATCH] Fix dump -w on ext4 partitions. --- CHANGES | 11 ++++++++++- dump/optr.c | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index e366add..1672554 100644 --- 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 + for reporting the bug and + submitting the patch. Changes between versions 0.4b42 and 0.4b43 (released June 11, 2010) =================================================================== diff --git a/dump/optr.c b/dump/optr.c index 056a6a6..5dd85df 100644 --- a/dump/optr.c +++ b/dump/optr.c @@ -37,7 +37,7 @@ #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 @@ -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 char *fstypes[] = { "ext2", "ext3", "InterMezzo", NULL }; +static char *fstypes[] = { "ext2", "ext3", "ext4", "InterMezzo", NULL }; /* * Query the operator; This previously-fascist piece of code -- 2.39.2