diff --git a/ChangeLog b/ChangeLog index 983c0ee9..71181c0b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ xx/xx/2003 - 1.7.2-WIP - Work in progress. - Further work on attribute resizing. + - Fix two logic inversion bugs in dir.c. Thanks to Russ Christensen for + finding the first one. 13/02/2003 - 1.7.1 - Urgent bug fixes. - Urgent bug fixes in ntfsresize (Szabolcs Szakacsits): diff --git a/libntfs/attrib.c b/libntfs/attrib.c index e42b72f9..249b783f 100644 --- a/libntfs/attrib.c +++ b/libntfs/attrib.c @@ -2441,7 +2441,7 @@ static int ntfs_resident_attr_resize(ntfs_attr *na, const s64 newsize) err = errno; goto put_err_out; } - /* Attribute is not allowed to be non-resident. */ + /* Attribute is not allowed to be non-resident, continue. */ } // TODO: Try to make other attributes non-resident.