diff options
| author | Pádraig Brady <P@draigBrady.com> | 2017-08-29 01:04:32 -0700 |
|---|---|---|
| committer | Pádraig Brady <P@draigBrady.com> | 2017-08-29 01:04:32 -0700 |
| commit | 3ebdc3e1af846de4b488b04406e07c7bac12ae1b (patch) | |
| tree | 3a63c46defbb4138d68da4c77fedddcbd57521d6 /src/stat.c | |
| parent | all: update gnulib submodule to latest (diff) | |
| download | coreutils-3ebdc3e1af846de4b488b04406e07c7bac12ae1b.tar.gz coreutils-3ebdc3e1af846de4b488b04406e07c7bac12ae1b.zip | |
stat,tail: support "AAFS" AppArmor file system
* src/stat.c (human_fstype): This file system is used
to manage AppArmor policy in the Linux kernel.
Diffstat (limited to 'src/stat.c')
| -rw-r--r-- | src/stat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c index dcaa580dc..87b3ff43f 100644 --- a/src/stat.c +++ b/src/stat.c @@ -247,6 +247,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) a comment. The S_MAGIC_... name and constant are automatically combined to produce the #define directives in fs.h. */ + case S_MAGIC_AAFS: /* 0x5A3C69F0 local */ + return "aafs"; case S_MAGIC_ACFS: /* 0x61636673 remote */ return "acfs"; case S_MAGIC_ADFS: /* 0xADF5 local */ |
