Changes by: uvman
Update of /cvsroot/linux-ntfs/ntfsprogs/include/ntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15396/include/ntfs
Modified Files:
attrib.h bootsect.h runlist.h volume.h
Log Message:
Match parameter names between .h and .c files
Index: attrib.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/attrib.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -r1.23 -r1.24
--- attrib.h 21 Oct 2005 18:05:13 -0000 1.23
+++ attrib.h 28 Oct 2005 12:47:49 -0000 1.24
@@ -304,7 +304,7 @@ extern int ntfs_attr_rm(ntfs_attr *na);
extern int ntfs_attr_record_resize(MFT_RECORD *m, ATTR_RECORD *a, u32 new_size);
extern int ntfs_resident_attr_value_resize(MFT_RECORD *m, ATTR_RECORD *a,
- const u32 newsize);
+ const u32 new_size);
extern int ntfs_attr_record_move_to(ntfs_attr_search_ctx *ctx, ntfs_inode *ni);
extern int ntfs_attr_record_move_away(ntfs_attr_search_ctx *ctx, int extra);
Index: bootsect.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/bootsect.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- bootsect.h 25 Feb 2004 14:21:14 -0000 1.2
+++ bootsect.h 28 Oct 2005 12:47:49 -0000 1.3
@@ -40,7 +40,8 @@
* --enable-debug).
*/
extern BOOL ntfs_boot_sector_is_ntfs(NTFS_BOOT_SECTOR *b, BOOL silent);
-extern int ntfs_boot_sector_parse(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b);
+extern int ntfs_boot_sector_parse(ntfs_volume *vol,
+ const NTFS_BOOT_SECTOR *bs);
#endif /* defined _NTFS_BOOTSECT_H */
Index: runlist.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/runlist.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -r1.9 -r1.10
--- runlist.h 21 Oct 2005 18:05:13 -0000 1.9
+++ runlist.h 28 Oct 2005 12:47:49 -0000 1.10
@@ -74,7 +74,7 @@ extern int ntfs_mapping_pairs_build(cons
const int dst_len, const runlist_element *rl,
const VCN start_vcn, VCN *const stop_vcn);
-extern int ntfs_rl_truncate(runlist **rl, const VCN start_vcn);
+extern int ntfs_rl_truncate(runlist **arl, const VCN start_vcn);
extern int ntfs_rl_sparse(runlist *rl);
extern s64 ntfs_rl_get_compressed_size(ntfs_volume *vol, runlist *rl);
Index: volume.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/include/ntfs/volume.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -p -r1.17 -r1.18
--- volume.h 26 Oct 2005 20:45:58 -0000 1.17
+++ volume.h 28 Oct 2005 12:47:49 -0000 1.18
@@ -205,7 +205,7 @@ extern int ntfs_umount(ntfs_volume *vol,
extern int ntfs_version_is_supported(ntfs_volume *vol);
extern int ntfs_logfile_reset(ntfs_volume *vol);
-extern int ntfs_volume_write_flags(ntfs_volume *v, const u16 flags);
+extern int ntfs_volume_write_flags(ntfs_volume *vol, const u16 flags);
#ifdef NTFS_RICH
|