]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Fix documentation: BLOCK_FLAG_TRAVERSE should be BLOCK_FLAG_DEPTH_TRAVERSE
authorTheodore Ts'o <tytso@mit.edu>
Sat, 18 Mar 2006 13:26:36 +0000 (08:26 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 18 Mar 2006 13:26:36 +0000 (08:26 -0500)
Addresses Debian Bug #351268

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
doc/ChangeLog
doc/libext2fs.texinfo
lib/ext2fs/ChangeLog
lib/ext2fs/ext2fs.h

index 07241aedf775d28353e201607e43f03e655249b5..81fffa3ab6fc80f0b0dab40f74d6bf311c2480ee 100644 (file)
@@ -1,3 +1,9 @@
+2006-03-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * libext2fs.texinfo (Iterating over blocks in an inode): Fix
+               BLOCK_FLAG_TRAVERSE so it is the correct
+               BLOCK_FLAG_DEPTH_TRAVERSE.  (Addresses Debian Bug #351268)
+
 2006-06-30  Theodore Ts'o  <tytso@mit.edu>
 
        * Release of E2fsprogs 1.38
index 0883539a93f9565893534cccd1071103c67f4d56..fb8bc9b197ecf090537d879f59caad4aa9dc45b9 100644 (file)
@@ -516,7 +516,7 @@ blocks where the block number is zero (also known as ``holes''.)  It is
 also known as BLOCK_FLAG_APPEND, since it is also used by functions
 such as ext2fs_expand_dir() to add a new block to an inode.
 
-@item BLOCK_FLAG_TRAVERSE
+@item BLOCK_FLAG_DEPTH_TRAVERSE
 This flag indicates that the iterator function for the
 indirect, doubly indirect, etc. blocks should be called after all
 of the blocks containined in the indirect blocks are processed.
index afcd5a10f2b5fa706007670dd9d558ed0e8cb512..857cdf0ceec8ed740115a7aba58318700951d41a 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-18  Theodore Ts'o  <tytso@mit.edu>
+
+       * ext2fs.h: Fix documentation so that BLOCK_FLAG_TRAVERSE is
+               BLOCK_FLAG_DEPTH_TRAVERSE.  (Addresses Debian Bug #351268)
+
 2006-03-17  Theodore Ts'o  <tytso@mit.edu>
 
        * initialize.c (calc_reserved_gdt_blocks): Fix a signed vs
index fd99c3eb75a00d3f8303498f3a9daa007d7fc430..809b60257d2a1f78574c3302d19db1abf3142c8d 100644 (file)
@@ -269,9 +269,9 @@ struct struct_ext2_filsys {
  * to an inode.  It can also be used for programs that want to be able
  * to deal with files that contain "holes".
  * 
- * BLOCK_FLAG_TRAVERSE indicates that the iterator function for the
- * indirect, doubly indirect, etc. blocks should be called after all
- * of the blocks containined in the indirect blocks are processed.
+ * BLOCK_FLAG_DEPTH_TRAVERSE indicates that the iterator function for
+ * the indirect, doubly indirect, etc. blocks should be called after
+ * all of the blocks containined in the indirect blocks are processed.
  * This is useful if you are going to be deallocating blocks from an
  * inode.
  *