Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/libntfs
In directory delta357:/tmp/cvs-serv15696/libntfs
Modified Files:
volume.c
Log Message:
oops, introduced stupiedness during one of recent cleanups
Index: volume.c
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/libntfs/volume.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -p -r1.80 -r1.81
--- volume.c 25 Nov 2006 21:10:35 -0000 1.80
+++ volume.c 25 Nov 2006 21:35:39 -0000 1.81
@@ -1535,7 +1535,8 @@ int ntfs_volume_write_flags(ntfs_volume
ret = 0; /* success */
err_out:
ntfs_attr_put_search_ctx(ctx);
- ntfs_log_error("%s(): Failed.\n", __FUNCTION__);
+ if (ret)
+ ntfs_log_error("%s(): Failed.\n", __FUNCTION__);
return ret;
}
|