apps/examples/stat: Add missing decoding of S_IXOTH bit.
This commit is contained in:
parent
76269d7bad
commit
f5b169ee8e
@ -172,6 +172,11 @@ static void dump_stat(FAR struct stat *buf)
|
|||||||
details[8]='w';
|
details[8]='w';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((buf->st_mode & S_IXOTH) != 0)
|
||||||
|
{
|
||||||
|
details[9]='x';
|
||||||
|
}
|
||||||
|
|
||||||
printf("stat buffer:\n");
|
printf("stat buffer:\n");
|
||||||
printf(" st_mode: %04x %s\n", buf->st_mode, details);
|
printf(" st_mode: %04x %s\n", buf->st_mode, details);
|
||||||
printf(" st_size: %llu\n", (unsigned long long)buf->st_size);
|
printf(" st_size: %llu\n", (unsigned long long)buf->st_size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user