Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs/libntfs
In directory usw-pr-cvs1:/tmp/cvs-serv8956/libntfs
Modified Files:
attrib.c volume.c
Log Message:
Fixed the compilation issues.
Index: attrib.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/attrib.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** attrib.c 2001/01/30 00:13:11 1.1
--- attrib.c 2001/01/30 12:55:21 1.2
***************
*** 55,59 ****
if (!b || !is_mft_recordp(b) ||
!(b->flags & MFT_RECORD_IN_USE) ||
! b->base_file_record ||
p2n((char*)b + b->attributes_offset) & 7 ||
p2n((char*)b + b->bytes_in_use) & 7 ||
--- 55,59 ----
if (!b || !is_mft_recordp(b) ||
!(b->flags & MFT_RECORD_IN_USE) ||
! b->base_mft_record ||
p2n((char*)b + b->attributes_offset) & 7 ||
p2n((char*)b + b->bytes_in_use) & 7 ||
***************
*** 366,370 ****
int set_attribute_value(ntfs_volume *vol, ATTRIBUTE_RECORD_HEADER *a,
! const __u8 *b, const __u64 l)
{
/* Sanity check. */
--- 366,370 ----
int set_attribute_value(ntfs_volume *vol, ATTRIBUTE_RECORD_HEADER *a,
! const __u8 *b, __u64 l)
{
/* Sanity check. */
Index: volume.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/libntfs/volume.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** volume.c 2001/01/25 22:25:43 1.2
--- volume.c 2001/01/30 12:55:21 1.3
***************
*** 47,51 ****
__u64 l;
ssize_t br;
! __u8 SectorsPerCluster, bits;
__s8 c;
--- 47,51 ----
__u64 l;
ssize_t br;
! __u8 sectors_per_cluster, bits;
__s8 c;
|