mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 01:53:45 +08:00
cosmetic : fixed improper wordings (hggdh2)
This commit is contained in:
parent
35fbb698ba
commit
c0955e5d74
@ -64,7 +64,7 @@ Thanks,
|
||||
* ntfscp *
|
||||
**********
|
||||
|
||||
- add ability to copy multiply files at once.
|
||||
- add ability to copy multiple files at once.
|
||||
|
||||
|
||||
***********
|
||||
|
@ -2223,11 +2223,11 @@ typedef struct {
|
||||
/* The below field is NOT present for the quota defaults entry. */
|
||||
SID sid; /* The SID of the user/object associated with
|
||||
this quota entry. If this field is missing
|
||||
then the INDEX_ENTRY is padded with zeros
|
||||
to multiply of 8 which are not counted in
|
||||
then the INDEX_ENTRY is padded to a multiple
|
||||
of 8 with zeros which are not counted in
|
||||
the data_length field. If the sid is present
|
||||
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. */
|
||||
} __attribute__((__packed__)) QUOTA_CONTROL_ENTRY;
|
||||
|
||||
|
@ -1678,7 +1678,7 @@ int ntfs_rl_truncate(runlist **arl, const VCN start_vcn)
|
||||
/**
|
||||
* Reallocate memory if necessary.
|
||||
* 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) {
|
||||
|
@ -2717,7 +2717,7 @@ static void check_cluster_allocation(ntfs_volume *vol, ntfsck_t *fsck)
|
||||
err_printf("%d clusters are referenced outside "
|
||||
"of the volume.\n", fsck->outsider);
|
||||
if (fsck->multi_ref)
|
||||
err_printf("%d clusters are referenced multiply"
|
||||
err_printf("%d clusters are referenced multiple"
|
||||
" times.\n", fsck->multi_ref);
|
||||
printf("%s", corrupt_volume_msg);
|
||||
exit(1);
|
||||
|
Loading…
Reference in New Issue
Block a user