minor style fix and changelog description

This commit is contained in:
yura 2007-01-07 19:19:53 +00:00
parent dcc13dca8b
commit 857573a2e4
2 changed files with 5 additions and 5 deletions

View File

@ -129,7 +129,7 @@ xx/01/2007 - 2.0.0 - ntfsmount sports full r/w and ntfsresize supports Vista.
- ntfsmount: Remove "show_sys_files" as potential harmful and - ntfsmount: Remove "show_sys_files" as potential harmful and
introduce new "case_insensitive" option to support both case introduce new "case_insensitive" option to support both case
sensitive and insensitive mounts. (Yura) sensitive and insensitive mounts. (Yura)
- ntfsmount: st_block calculation was wrong for resident files. (Yuval) - ntfsmount: st_block calculation was wrong. (Yuval)
21/06/2006 - 1.13.1 - Various fixes. 21/06/2006 - 1.13.1 - Various fixes.

View File

@ -375,7 +375,7 @@ static int ntfs_fuse_getattr(const char *org_path, struct stat *stbuf)
na = ntfs_attr_open(ni, AT_INDEX_ALLOCATION, NTFS_INDEX_I30, 4); na = ntfs_attr_open(ni, AT_INDEX_ALLOCATION, NTFS_INDEX_I30, 4);
if (na) { if (na) {
stbuf->st_size = na->data_size; stbuf->st_size = na->data_size;
stbuf->st_blocks = (na->allocated_size+511) >> 9; stbuf->st_blocks = (na->allocated_size + 511) >> 9;
ntfs_attr_close(na); ntfs_attr_close(na);
} else { } else {
stbuf->st_size = 0; stbuf->st_size = 0;
@ -386,7 +386,7 @@ static int ntfs_fuse_getattr(const char *org_path, struct stat *stbuf)
/* Regular or Interix (INTX) file. */ /* Regular or Interix (INTX) file. */
stbuf->st_mode = S_IFREG; stbuf->st_mode = S_IFREG;
stbuf->st_size = ni->data_size; stbuf->st_size = ni->data_size;
stbuf->st_blocks = (ni->allocated_size+511) >> 9; stbuf->st_blocks = (ni->allocated_size + 511) >> 9;
stbuf->st_nlink = le16_to_cpu(ni->mrec->link_count); stbuf->st_nlink = le16_to_cpu(ni->mrec->link_count);
if (ni->flags & FILE_ATTR_SYSTEM || stream_name_len) { if (ni->flags & FILE_ATTR_SYSTEM || stream_name_len) {
na = ntfs_attr_open(ni, AT_DATA, stream_name, na = ntfs_attr_open(ni, AT_DATA, stream_name,
@ -398,8 +398,8 @@ static int ntfs_fuse_getattr(const char *org_path, struct stat *stbuf)
} }
if (stream_name_len) { if (stream_name_len) {
stbuf->st_size = na->data_size; stbuf->st_size = na->data_size;
stbuf->st_blocks = (ni->allocated_size+511) >> stbuf->st_blocks =
9; (ni->allocated_size + 511) >> 9;
} }
/* Check whether it's Interix FIFO or socket. */ /* Check whether it's Interix FIFO or socket. */
if (!(ni->flags & FILE_ATTR_HIDDEN) && if (!(ni->flags & FILE_ATTR_HIDDEN) &&