]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Update release notes, version string, etc. for e2fsprogs 1.41.11 release v1.41.11
authorTheodore Ts'o <tytso@mit.edu>
Mon, 15 Mar 2010 04:57:42 +0000 (00:57 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 15 Mar 2010 04:57:42 +0000 (00:57 -0400)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
README
RELEASE-NOTES
debian/changelog
debian/libcomerr2.symbols
doc/libext2fs.texinfo
e2fsprogs.lsm
po/e2fsprogs.pot
version.h

diff --git a/README b/README
index 9cd68d91e11aebf84e0951fa16d5771de8d294b9..81bb75563d1728990266c7e265003ce7706e182e 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-       This is the new version (1.41.10) of the second extended file
+       This is the new version (1.41.11) of the second extended file
 system management programs.
 
        From time to time, I release new versions of e2fsprogs, to fix
index 7d2993c87c437aa0f768bc610e8c1cdd80f8af7b..3e6ac3f6e50c6713a281758a3d2b4a807a70c89f 100644 (file)
@@ -1,3 +1,59 @@
+E2fsprogs 1.41.11 (March 14, 2010)
+==================================
+
+E2fsck will no longer give a fatal error and abort if the physical
+device has been resized beyond 2**32 blocks.  (Addresses Launchpad
+Bug: #521648)
+
+Debugfs has a bug fixed so that "logdump -b <blk>" now properly shows
+the allocation status of the block <blk>.  (Addresses Debian Bug:
+#564084)
+    
+E2fsck now prints a much more emphatic and hopefully scary message
+when a file system is detected as mounted while doing a read/write
+check of the filesystem.  Hopefully this will dissuade users from
+thinking, "surely that message doesn't apply to *me*" :-(
+
+E2fsck -n will now always open the file system read-only.  We now
+disallow certain combination of options which previously were manual
+exceptions; this is bad because it causes users to think they are
+smarter than they really are.  So "-n -c", "-n -l", "-n -L", and "-n
+-D" are no longer supported.  (Addresses Launchpad Bug: #537483)
+    
+In e2fsprogs 1.41.10, mke2fs would ask for confirmation to proceed if
+it detected a badly aligned partition.  Unfortunately, this broke some
+distribution installation scripts, so it now just prints the warning
+message and proceeds.  (Addresses Red Hat Bug: #569021. Addresses
+Launchpad Bug: #530071)
+    
+Mke2fs would take a long time to create very large journal files for
+ext4.  This was caused by a bug in ext2fs_block_iterate2(), which is
+now fixed.
+
+E2fsck now understands the EOFBLOCKS_FL flag which will be used in
+2.6.34 kernels to make e2fsck not complain about blocks deliberately
+fallocated() beyond an inode's i_size.
+
+E2fsprogs 1.41.10 introduced a regression (in commit b71e018) where
+e2fsck -fD can corrupt non-indexed directories when are exists one or
+more file names which alphabetically sort before ".".  This can happen
+with ext2 filesystems or for small directories (take less than a lock)
+which contain filenames that begin with a space or some other
+punctuation mark.  (Addresses Debian Bug: #573923, Addresses Launchpad
+Bug: #525114)
+
+
+Programmer's Notes
+------------------
+
+Add new test, f_rehash_dir, which checks to make sure e2fsck -D works
+correctly.
+    
+The libcom_err function now has support for Heimdal's com_right_r
+function().  (Addresses Sourceforge Bug: #2963865, Addresses Debian
+Bug: #558910)
+    
+
 E2fsprogs 1.41.10 (February 7, 2010)
 ====================================
 
index f7857978c6296e9794fb4205d6aa65911b1d1d31..22533ff3ea101de803240439e3edb020875156ea 100644 (file)
@@ -1,3 +1,34 @@
+e2fsprogs (1.41.11-1) unstable; urgency=medium
+
+  * New upstream release
+  * Add Heimdal function com_right_r() to libcom_err (Closes: #558910)
+  * Allow e2fsck to run even if the physical device has more than 2**32 blocks
+  * Debugfs's "logdump -b <blk>" now properly shows the allocation status
+    of the block <blk>.  (Closes: #564084)
+  * Make e2fsck's "the filesystem is mounted" message is now more scary
+    to hopefully dissuade users from thinking, "surely that message
+    doesn't apply to *me*"  :-(
+  * e2fsck -n will now always open the file system read-only.   We now
+    disallow certain combination of options which previously were manual
+    exceptions; this is bad because it causes users to think they are
+    smarter than they really are.   So "-n -c", "-n -l", "-n -L", and
+    "-n -D" are no longer supported.
+  * If the partition is badly aligned, have mke2fs just print a warning
+    message and continue.  Previously mke2fs would ask to confirm, and
+    this broke distro installation scripts.
+  * Fix a bug in libext2fs caused the creation of very large journals
+    for ext4 to be _very_ slow.
+  * E2fsck now understands the EOFBLOCKS_FL flag which will be used in
+    2.6.34 kernels to make e2fsck not complain about blocks deliberately
+    fallocated() beyond an inode's i_size.
+  * Fix a bug in e2fsck which could cause e2fsck -D to corrupt
+    non-indexed directories.  (Closes: #572453)
+  * debian/rules: can be compiled statically with stack protector now.
+    (Closes: #573923)
+  * Update debian policy compliance to 3.8.4
+
+ -- Theodore Y. Ts'o <tytso@mit.edu>  Mon, 15 Mar 2010 00:16:35 -0400
+
 e2fsprogs (1.41.10-1) unstable; urgency=low
 
   * New upstream release
index 77da3306275e5950e1b38923b2d9955ae33c8c30..ea5475035fc953b62193b937d29fb0bdd30dcb57 100644 (file)
@@ -7,6 +7,7 @@ libcom_err.so.2 libcomerr2 #MINVER#
  com_err_hook@Base 1.01
  com_err_va@Base 1.01
  com_right@Base 1.34
+ com_right_r@Base 1.41.11
  error_message@Base 1.01
  error_table_name@Base 1.01
  et_list_lock@Base 1.41.2
index 2a483b09ebccea5949cd98d9250e83bff8ecfb25..fcd38b9d0220a901f64a196501aa670f6745b64c 100644 (file)
@@ -1,7 +1,7 @@
 \input texinfo    @c -*-texinfo-*-
 @c %**start of header
 @setfilename libext2fs.info
-@settitle The EXT2FS Library (version 1.41.10)
+@settitle The EXT2FS Library (version 1.41.11)
 @synindex tp fn
 @comment %**end of header
 
@@ -60,8 +60,8 @@ by the author.
 
 @title The EXT2FS Library
 @subtitle The EXT2FS Library
-@subtitle Version 1.41.10
-@subtitle February 2010
+@subtitle Version 1.41.11
+@subtitle March 2010
 
 @author by Theodore Ts'o
 
@@ -102,7 +102,7 @@ by the Foundation.
 
 @top The EXT2FS Library
 
-This manual documents the EXT2FS Library, version 1.41.10
+This manual documents the EXT2FS Library, version 1.41.11.
 
 @end ifinfo
 
index 1dc289aca4682156c5bd43e5a7220d02f4f446e7..16a6c1b73e9bde6aa6c741e4665163e42ebe6930 100644 (file)
@@ -1,16 +1,16 @@
 Begin3
 Title:          EXT2 Filesystem utilities
-Version:        1.41.10
-Entered-date:   10Feb2010
+Version:        1.41.11
+Entered-date:   14Mar2010
 Description:    The filesystem utilities for the EXT2 filesystem, including 
                e2fsck, mke2fs, dumpe2fs, fsck, and others.
 Keywords:       utilities, fsck, filesystem, Ext2fs
 Author:         tytso@mit.edu (Theodore Tso)
 Maintained-by:  tytso@mit.edu (Theodore Tso)
 Primary-site:   download.sourceforge.net /pub/sourceforge/e2fsprogs
-               4364kB e2fsprogs-1.41.10.tar.gz
-               480kB e2fsprogs-libs-1.41.10.tar.gz
-                1kB   e2fsprogs-1.41.10.lsm
+               4368kB e2fsprogs-1.41.11.tar.gz
+               480kB e2fsprogs-libs-1.41.11.tar.gz
+                1kB   e2fsprogs-1.41.11.lsm
 Alternate-site: 
 Platforms:     linux 1.2.x/1.3.x/2.0.x/2.1.x/2.2.x/2.3.x/2.4.x/2.5.x/2.6.x
 Copying-policy: GPL-2/LGPL-2
index ad0334fe5adb7174322c977c14d4aa1a2d881350..fd472dfa82b7b91c19215ea4b7af363e651ddb50 100644 (file)
@@ -1,6 +1,6 @@
 # E2fsprogs translation template file
 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 
-#     2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Theodore Ts'o
+#     2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by Theodore Ts'o
 # This file is distributed under the same license as the e2fsprogs package.
 # Theodore Ts'o <tytso@mit.edu>, 2010.
 #
@@ -65,9 +65,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: e2fsprogs 1.41.10\n"
+"Project-Id-Version: e2fsprogs 1.41.11\n"
 "Report-Msgid-Bugs-To: tytso@alum.mit.edu\n"
-"POT-Creation-Date: 2010-02-10 15:24-0500\n"
+"POT-Creation-Date: 2010-03-15 00:18-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -89,7 +89,7 @@ msgid "while reading the bad blocks inode"
 msgstr ""
 
 #: e2fsck/badblocks.c:71 e2fsck/iscan.c:112 e2fsck/scantest.c:109
-#: e2fsck/unix.c:1062 e2fsck/unix.c:1145 misc/badblocks.c:1155
+#: e2fsck/unix.c:1077 e2fsck/unix.c:1160 misc/badblocks.c:1155
 #: misc/badblocks.c:1163 misc/badblocks.c:1177 misc/badblocks.c:1189
 #: misc/dumpe2fs.c:552 misc/e2image.c:583 misc/e2image.c:679
 #: misc/e2image.c:695 misc/mke2fs.c:185 misc/tune2fs.c:1573 resize/main.c:310
@@ -186,12 +186,12 @@ msgstr ""
 msgid "Usage: %s [-F] [-I inode_buffer_blocks] device\n"
 msgstr ""
 
-#: e2fsck/iscan.c:83 e2fsck/unix.c:817
+#: e2fsck/iscan.c:83 e2fsck/unix.c:832
 #, c-format
 msgid "while opening %s for flushing"
 msgstr ""
 
-#: e2fsck/iscan.c:88 e2fsck/unix.c:823 resize/main.c:286
+#: e2fsck/iscan.c:88 e2fsck/unix.c:838 resize/main.c:286
 #, c-format
 msgid "while trying to flush %s"
 msgstr ""
@@ -538,20 +538,20 @@ msgstr ""
 msgid "ext attr block map"
 msgstr ""
 
-#: e2fsck/pass1.c:2162
+#: e2fsck/pass1.c:2163
 #, c-format
 msgid "%6lu(%c): expecting %6lu got phys %6lu (blkcnt %lld)\n"
 msgstr ""
 
-#: e2fsck/pass1.c:2514
+#: e2fsck/pass1.c:2515
 msgid "block bitmap"
 msgstr ""
 
-#: e2fsck/pass1.c:2518
+#: e2fsck/pass1.c:2519
 msgid "inode bitmap"
 msgstr ""
 
-#: e2fsck/pass1.c:2522
+#: e2fsck/pass1.c:2523
 msgid "inode table"
 msgstr ""
 
@@ -2463,8 +2463,9 @@ msgstr ""
 msgid ""
 "\n"
 "\n"
-"\a\a\a\aWARNING!!!  Running e2fsck on a mounted filesystem may cause\n"
-"SEVERE filesystem damage.\a\a\a\n"
+"\a\a\a\aWARNING!!!  The filesystem is mounted.   If you continue you "
+"***WILL***\n"
+"cause ***SEVERE*** filesystem damage.\a\a\a\n"
 "\n"
 msgstr ""
 
@@ -2565,24 +2566,36 @@ msgstr ""
 msgid "The -t option is not supported on this version of e2fsck.\n"
 msgstr ""
 
-#: e2fsck/unix.c:801 misc/tune2fs.c:550 misc/tune2fs.c:835 misc/tune2fs.c:853
+#: e2fsck/unix.c:795
+msgid "The -n and -D options are incompatible."
+msgstr ""
+
+#: e2fsck/unix.c:800
+msgid "The -n and -c options are incompatible."
+msgstr ""
+
+#: e2fsck/unix.c:805
+msgid "The -n and -l/-L options are incompatible."
+msgstr ""
+
+#: e2fsck/unix.c:816 misc/tune2fs.c:550 misc/tune2fs.c:835 misc/tune2fs.c:853
 #, c-format
 msgid "Unable to resolve '%s'"
 msgstr ""
 
-#: e2fsck/unix.c:830
+#: e2fsck/unix.c:845
 #, c-format
 msgid "The -c and the -l/-L options may not be both used at the same time.\n"
 msgstr ""
 
-#: e2fsck/unix.c:878
+#: e2fsck/unix.c:893
 #, c-format
 msgid ""
 "E2FSCK_JBD_DEBUG \"%s\" not an integer\n"
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:887
+#: e2fsck/unix.c:902
 #, c-format
 msgid ""
 "\n"
@@ -2590,43 +2603,43 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:961
+#: e2fsck/unix.c:976
 #, c-format
 msgid "Error: ext2fs library version out of date!\n"
 msgstr ""
 
-#: e2fsck/unix.c:969
+#: e2fsck/unix.c:984
 msgid "while trying to initialize program"
 msgstr ""
 
-#: e2fsck/unix.c:980
+#: e2fsck/unix.c:995
 #, c-format
 msgid "\tUsing %s, %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:992
+#: e2fsck/unix.c:1007
 msgid "need terminal for interactive repairs"
 msgstr ""
 
-#: e2fsck/unix.c:1025
+#: e2fsck/unix.c:1040
 #, c-format
 msgid "%s: %s trying backup blocks...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1027
+#: e2fsck/unix.c:1042
 msgid "Superblock invalid,"
 msgstr ""
 
-#: e2fsck/unix.c:1028
+#: e2fsck/unix.c:1043
 msgid "Group descriptors look bad..."
 msgstr ""
 
-#: e2fsck/unix.c:1038
+#: e2fsck/unix.c:1053
 #, c-format
 msgid "%s: going back to original superblock\n"
 msgstr ""
 
-#: e2fsck/unix.c:1065
+#: e2fsck/unix.c:1080
 #, c-format
 msgid ""
 "The filesystem revision is apparently too high for this version of e2fsck.\n"
@@ -2634,142 +2647,142 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1071
+#: e2fsck/unix.c:1086
 #, c-format
 msgid "Could this be a zero-length partition?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1073
+#: e2fsck/unix.c:1088
 #, c-format
 msgid "You must have %s access to the filesystem or be root\n"
 msgstr ""
 
-#: e2fsck/unix.c:1078
+#: e2fsck/unix.c:1093
 #, c-format
 msgid "Possibly non-existent or swap device?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1080
+#: e2fsck/unix.c:1095
 #, c-format
 msgid "Filesystem mounted or opened exclusively by another program?\n"
 msgstr ""
 
-#: e2fsck/unix.c:1084
+#: e2fsck/unix.c:1099
 #, c-format
 msgid ""
 "Disk write-protected; use the -n option to do a read-only\n"
 "check of the device.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1148
+#: e2fsck/unix.c:1163
 msgid "Get a newer version of e2fsck!"
 msgstr ""
 
-#: e2fsck/unix.c:1178
+#: e2fsck/unix.c:1193
 #, c-format
 msgid "while checking ext3 journal for %s"
 msgstr ""
 
-#: e2fsck/unix.c:1189
+#: e2fsck/unix.c:1204
 #, c-format
 msgid ""
 "Warning: skipping journal recovery because doing a read-only filesystem "
 "check.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1202
+#: e2fsck/unix.c:1217
 #, c-format
 msgid "unable to set superblock flags on %s\n"
 msgstr ""
 
-#: e2fsck/unix.c:1208
+#: e2fsck/unix.c:1223
 #, c-format
 msgid "while recovering ext3 journal of %s"
 msgstr ""
 
-#: e2fsck/unix.c:1233
+#: e2fsck/unix.c:1248
 #, c-format
 msgid "%s has unsupported feature(s):"
 msgstr ""
 
-#: e2fsck/unix.c:1249
+#: e2fsck/unix.c:1264
 msgid "Warning: compression support is experimental.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1254
+#: e2fsck/unix.c:1269
 #, c-format
 msgid ""
 "E2fsck not compiled with HTREE support,\n"
 "\tbut filesystem %s has HTREE directories.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1307
+#: e2fsck/unix.c:1322
 msgid "while reading bad blocks inode"
 msgstr ""
 
-#: e2fsck/unix.c:1309
+#: e2fsck/unix.c:1324
 #, c-format
 msgid "This doesn't bode well, but we'll try to go on...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1335
+#: e2fsck/unix.c:1350
 msgid "Couldn't determine journal size"
 msgstr ""
 
-#: e2fsck/unix.c:1338
+#: e2fsck/unix.c:1353
 #, c-format
 msgid "Creating journal (%d blocks): "
 msgstr ""
 
-#: e2fsck/unix.c:1345 misc/mke2fs.c:2226
+#: e2fsck/unix.c:1360 misc/mke2fs.c:2225
 msgid ""
 "\n"
 "\twhile trying to create journal"
 msgstr ""
 
-#: e2fsck/unix.c:1348
+#: e2fsck/unix.c:1363
 #, c-format
 msgid " Done.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1349
+#: e2fsck/unix.c:1364
 #, c-format
 msgid ""
 "\n"
 "*** journal has been re-created - filesystem is now ext3 again ***\n"
 msgstr ""
 
-#: e2fsck/unix.c:1356
+#: e2fsck/unix.c:1371
 #, c-format
 msgid "Restarting e2fsck from the beginning...\n"
 msgstr ""
 
-#: e2fsck/unix.c:1360
+#: e2fsck/unix.c:1375
 msgid "while resetting context"
 msgstr ""
 
-#: e2fsck/unix.c:1367
+#: e2fsck/unix.c:1382
 #, c-format
 msgid "%s: e2fsck canceled.\n"
 msgstr ""
 
-#: e2fsck/unix.c:1372
+#: e2fsck/unix.c:1387
 msgid "aborted"
 msgstr ""
 
-#: e2fsck/unix.c:1384
+#: e2fsck/unix.c:1399
 #, c-format
 msgid ""
 "\n"
 "%s: ***** FILE SYSTEM WAS MODIFIED *****\n"
 msgstr ""
 
-#: e2fsck/unix.c:1387
+#: e2fsck/unix.c:1402
 #, c-format
 msgid "%s: ***** REBOOT LINUX *****\n"
 msgstr ""
 
-#: e2fsck/unix.c:1395
+#: e2fsck/unix.c:1410
 #, c-format
 msgid ""
 "\n"
@@ -2777,7 +2790,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: e2fsck/unix.c:1431
+#: e2fsck/unix.c:1446
 msgid "while setting block group checksum info"
 msgstr ""
 
@@ -3905,7 +3918,7 @@ msgstr ""
 msgid "bad num inodes - %s"
 msgstr ""
 
-#: misc/mke2fs.c:1431 misc/mke2fs.c:2181
+#: misc/mke2fs.c:1431 misc/mke2fs.c:2180
 #, c-format
 msgid "while trying to open journal device %s\n"
 msgstr ""
@@ -4020,34 +4033,34 @@ msgid ""
 "This may result in very poor performance, (re)-partitioning suggested.\n"
 msgstr ""
 
-#: misc/mke2fs.c:1724
+#: misc/mke2fs.c:1723
 msgid "reserved online resize blocks not supported on non-sparse filesystem"
 msgstr ""
 
-#: misc/mke2fs.c:1733
+#: misc/mke2fs.c:1732
 msgid "blocks per group count out of range"
 msgstr ""
 
-#: misc/mke2fs.c:1748
+#: misc/mke2fs.c:1747
 msgid "Flex_bg feature not enabled, so flex_bg size may not be specified"
 msgstr ""
 
-#: misc/mke2fs.c:1760
+#: misc/mke2fs.c:1759
 #, c-format
 msgid "invalid inode size %d (min %d/max %d)"
 msgstr ""
 
-#: misc/mke2fs.c:1774
+#: misc/mke2fs.c:1773
 #, c-format
 msgid "too many inodes (%llu), raise inode ratio?"
 msgstr ""
 
-#: misc/mke2fs.c:1779
+#: misc/mke2fs.c:1778
 #, c-format
 msgid "too many inodes (%llu), specify < 2^32 inodes"
 msgstr ""
 
-#: misc/mke2fs.c:1794
+#: misc/mke2fs.c:1793
 #, c-format
 msgid ""
 "inode_size (%u) * inodes_count (%u) too big for a\n"
@@ -4055,16 +4068,16 @@ msgid ""
 "\tor lower inode count (-N).\n"
 msgstr ""
 
-#: misc/mke2fs.c:1887 misc/tune2fs.c:1494
+#: misc/mke2fs.c:1886 misc/tune2fs.c:1494
 msgid "Couldn't allocate memory for tdb filename\n"
 msgstr ""
 
-#: misc/mke2fs.c:1900 misc/tune2fs.c:1516
+#: misc/mke2fs.c:1899 misc/tune2fs.c:1516
 #, c-format
 msgid "while trying to delete %s"
 msgstr ""
 
-#: misc/mke2fs.c:1910
+#: misc/mke2fs.c:1909
 #, c-format
 msgid ""
 "Overwriting existing filesystem; this can be undone using the command:\n"
@@ -4072,87 +4085,87 @@ msgid ""
 "\n"
 msgstr ""
 
-#: misc/mke2fs.c:1947
+#: misc/mke2fs.c:1946
 #, c-format
 msgid "Calling BLKDISCARD from %llu to %llu "
 msgstr ""
 
-#: misc/mke2fs.c:1950
+#: misc/mke2fs.c:1949
 #, c-format
 msgid "failed.\n"
 msgstr ""
 
-#: misc/mke2fs.c:1952
+#: misc/mke2fs.c:1951
 #, c-format
 msgid "succeeded.\n"
 msgstr ""
 
-#: misc/mke2fs.c:2001
+#: misc/mke2fs.c:2000
 msgid "while setting up superblock"
 msgstr ""
 
-#: misc/mke2fs.c:2065
+#: misc/mke2fs.c:2064
 #, c-format
 msgid "unknown os - %s"
 msgstr ""
 
-#: misc/mke2fs.c:2119
+#: misc/mke2fs.c:2118
 msgid "while trying to allocate filesystem tables"
 msgstr ""
 
-#: misc/mke2fs.c:2150
+#: misc/mke2fs.c:2149
 #, c-format
 msgid "while zeroing block %u at end of filesystem"
 msgstr ""
 
-#: misc/mke2fs.c:2163
+#: misc/mke2fs.c:2162
 msgid "while reserving blocks for online resize"
 msgstr ""
 
-#: misc/mke2fs.c:2174 misc/tune2fs.c:479
+#: misc/mke2fs.c:2173 misc/tune2fs.c:479
 msgid "journal"
 msgstr ""
 
-#: misc/mke2fs.c:2186
+#: misc/mke2fs.c:2185
 #, c-format
 msgid "Adding journal to device %s: "
 msgstr ""
 
-#: misc/mke2fs.c:2193
+#: misc/mke2fs.c:2192
 #, c-format
 msgid ""
 "\n"
 "\twhile trying to add journal to device %s"
 msgstr ""
 
-#: misc/mke2fs.c:2198 misc/mke2fs.c:2230 misc/tune2fs.c:508 misc/tune2fs.c:522
+#: misc/mke2fs.c:2197 misc/mke2fs.c:2229 misc/tune2fs.c:508 misc/tune2fs.c:522
 #, c-format
 msgid "done\n"
 msgstr ""
 
-#: misc/mke2fs.c:2207
+#: misc/mke2fs.c:2206
 #, c-format
 msgid "Skipping journal creation in super-only mode\n"
 msgstr ""
 
-#: misc/mke2fs.c:2218
+#: misc/mke2fs.c:2217
 #, c-format
 msgid "Creating journal (%u blocks): "
 msgstr ""
 
-#: misc/mke2fs.c:2235
+#: misc/mke2fs.c:2234
 #, c-format
 msgid "Writing superblocks and filesystem accounting information: "
 msgstr ""
 
-#: misc/mke2fs.c:2240
+#: misc/mke2fs.c:2239
 #, c-format
 msgid ""
 "\n"
 "Warning, had trouble writing out superblocks."
 msgstr ""
 
-#: misc/mke2fs.c:2243
+#: misc/mke2fs.c:2242
 #, c-format
 msgid ""
 "done\n"
index 84218c5eedf24d63a3ed1042b196fd5d9f140ae6..d1e3baed5c7453e95214cbdcc4a99db85e10a9ed 100644 (file)
--- a/version.h
+++ b/version.h
@@ -7,5 +7,5 @@
  * redistributed under the GNU Public License.
  */
 
-#define E2FSPROGS_VERSION "1.41.10"
-#define E2FSPROGS_DATE "10-Feb-2009"
+#define E2FSPROGS_VERSION "1.41.11"
+#define E2FSPROGS_DATE "14-Mar-2010"