Changes by: szaka
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv23569/libntfs
Modified Files:
volume.c
Log Message:
ntfs_reset_logfile(): delete a NOOP
Index: volume.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/volume.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -U2 -r1.54 -r1.55
--- volume.c 14 Jul 2002 12:34:44 -0000 1.54
+++ volume.c 14 Jul 2002 13:18:01 -0000 1.55
@@ -976,5 +976,5 @@
pos += count;
- if (count == -1 || (pos + count) != len) {
+ if (count == -1 || pos != len) {
Dprintf("Amount of $LogFile data read does not "
"correspond to expected length!");
|