diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/lsvfs/lsvfs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.bin/lsvfs/lsvfs.c b/usr.bin/lsvfs/lsvfs.c index 1e486d7..1f23e1c 100644 --- a/usr.bin/lsvfs/lsvfs.c +++ b/usr.bin/lsvfs/lsvfs.c @@ -105,5 +105,10 @@ fmt_flags(int flags) strcat(buf, "unicode"); } + if(flags & VFCF_JAIL) { + if(comma++) strcat(buf, ", "); + strcat(buf, "jail"); + } + return buf; } |