Changes by: szaka
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5466/ntfsprogs
Modified Files:
ntfsmove.c
Log Message:
Fix 'make extra' (ntfsmove) compilation
Index: ntfsmove.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsmove.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -p -r1.14 -r1.15
--- ntfsmove.c 24 Sep 2005 22:54:55 -0000 1.14
+++ ntfsmove.c 24 Sep 2005 23:46:54 -0000 1.15
@@ -867,7 +867,7 @@ int main (int argc, char *argv[])
count = move_file (vol, inode, opts.location, 0);
if ((count > 0) && (!opts.nodirty)) {
- if (ntfs_volume_set_flags (vol, vol->flags | VOLUME_IS_DIRTY) <
+ if (ntfs_volume_write_flags (vol, vol->flags | VOLUME_IS_DIRTY) <
0) {
Eprintf ("Couldn't mark volume dirty\n");
}
|