cosmetic : fixed improper wordings (hggdh2)

This commit is contained in:
Jean-Pierre André 2011-09-28 16:41:12 +02:00
parent 35fbb698ba
commit c0955e5d74
4 changed files with 6 additions and 6 deletions

View File

@ -64,7 +64,7 @@ Thanks,
* ntfscp * * ntfscp *
********** **********
- add ability to copy multiply files at once. - add ability to copy multiple files at once.
*********** ***********

View File

@ -2223,11 +2223,11 @@ typedef struct {
/* The below field is NOT present for the quota defaults entry. */ /* The below field is NOT present for the quota defaults entry. */
SID sid; /* The SID of the user/object associated with SID sid; /* The SID of the user/object associated with
this quota entry. If this field is missing this quota entry. If this field is missing
then the INDEX_ENTRY is padded with zeros then the INDEX_ENTRY is padded to a multiple
to multiply of 8 which are not counted in of 8 with zeros which are not counted in
the data_length field. If the sid is present the data_length field. If the sid is present
then this structure is padded with zeros to then this structure is padded with zeros to
multiply of 8 and the padding is counted in a multiple of 8 and the padding is counted in
the INDEX_ENTRY's data_length. */ the INDEX_ENTRY's data_length. */
} __attribute__((__packed__)) QUOTA_CONTROL_ENTRY; } __attribute__((__packed__)) QUOTA_CONTROL_ENTRY;

View File

@ -1678,7 +1678,7 @@ int ntfs_rl_truncate(runlist **arl, const VCN start_vcn)
/** /**
* Reallocate memory if necessary. * Reallocate memory if necessary.
* FIXME: Below code is broken, because runlist allocations must be * FIXME: Below code is broken, because runlist allocations must be
* a multiply of 4096. The code caused crashes and corruptions. * a multiple of 4096. The code caused crashes and corruptions.
*/ */
/* /*
if (!is_end) { if (!is_end) {

View File

@ -2717,7 +2717,7 @@ static void check_cluster_allocation(ntfs_volume *vol, ntfsck_t *fsck)
err_printf("%d clusters are referenced outside " err_printf("%d clusters are referenced outside "
"of the volume.\n", fsck->outsider); "of the volume.\n", fsck->outsider);
if (fsck->multi_ref) if (fsck->multi_ref)
err_printf("%d clusters are referenced multiply" err_printf("%d clusters are referenced multiple"
" times.\n", fsck->multi_ref); " times.\n", fsck->multi_ref);
printf("%s", corrupt_volume_msg); printf("%s", corrupt_volume_msg);
exit(1); exit(1);