mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Consider only dirs and files in nftw(3)
This commit is contained in:
parent
fa31e920c5
commit
b730c116d6
9
nnn.c
9
nnn.c
|
@ -1149,13 +1149,8 @@ show_help(void)
|
|||
static int
|
||||
sum_bsizes(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf)
|
||||
{
|
||||
/* Handle permission problems */
|
||||
if(typeflag == FTW_NS) {
|
||||
printmsg("No stats (permissions ?)");
|
||||
return 0;
|
||||
}
|
||||
|
||||
blk_size += sb->st_blocks;
|
||||
if(typeflag == FTW_F || typeflag == FTW_D)
|
||||
blk_size += sb->st_blocks;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue