From 857573a2e4a713927b0f4807dbf2c06c0e3554ec Mon Sep 17 00:00:00 2001 From: yura Date: Sun, 7 Jan 2007 19:19:53 +0000 Subject: [PATCH] minor style fix and changelog description --- ChangeLog | 2 +- ntfsprogs/ntfsmount.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 46cb4628..27e54770 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 introduce new "case_insensitive" option to support both case 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. diff --git a/ntfsprogs/ntfsmount.c b/ntfsprogs/ntfsmount.c index c42ec166..8a79a28b 100644 --- a/ntfsprogs/ntfsmount.c +++ b/ntfsprogs/ntfsmount.c @@ -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); if (na) { 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); } else { 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. */ stbuf->st_mode = S_IFREG; 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); if (ni->flags & FILE_ATTR_SYSTEM || stream_name_len) { 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) { stbuf->st_size = na->data_size; - stbuf->st_blocks = (ni->allocated_size+511) >> - 9; + stbuf->st_blocks = + (ni->allocated_size + 511) >> 9; } /* Check whether it's Interix FIFO or socket. */ if (!(ni->flags & FILE_ATTR_HIDDEN) &&