1E2fsprogs 1.17 (October 26, 1999) 2================================= 3 4Fixed nasty typo in fsck which caused parallelized fsck's to go into an 5infinite loop. 6 7Fixed a bug in fsck where it used strncmp to compare a binary UUID, 8thus potentially causing problems if a binary UUID contained a NULL 9character. 10 11E2fsck now uses stricter checks for directory entries in pass 2: 12zero-length filenames are not allowed; neither are 8 byte long 13directory entries. 14 15The debugfs "dirty" command now clears the filesystem valid bit. 16(Previously this just set the dirty-as-in-needs-writing-out-to-disk 17bit in the in-core superblock image. The new functionality is more 18what the user expects, and is more useful.) 19 20Added a debugging hook to test parallel fsck; if the environment 21variable FSCK_FORCE_ALL_PARALLEL, then filesystems on the same drive 22will be checked in parallel when they normally would not be. 23 24Programmer's notes: 25------------------- 26 27Fixed some #ifdef's for compilation under the Hurd OS. 28 29Fixed minor W2K compatibility problems. 30 31Fixed some miscellaneous GCC warnings. 32 33