apps/examples/stat: Add missing decoding of S_IXOTH bit.

This commit is contained in:
Gregory Nutt 2017-02-13 16:57:41 -06:00
parent 76269d7bad
commit f5b169ee8e

View File

@ -172,6 +172,11 @@ static void dump_stat(FAR struct stat *buf)
details[8]='w';
}
if ((buf->st_mode & S_IXOTH) != 0)
{
details[9]='x';
}
printf("stat buffer:\n");
printf(" st_mode: %04x %s\n", buf->st_mode, details);
printf(" st_size: %llu\n", (unsigned long long)buf->st_size);