diff options
author | Martin Matuska <martin@matuska.org> | 2019-03-14 23:04:08 +0100 |
---|---|---|
committer | Martin Matuska <martin@matuska.org> | 2019-03-14 23:04:38 +0100 |
commit | 1939dfb1dbd3500c0e206f00a09e0395488e7995 (patch) | |
tree | be0b88cc75778c4fc41cd59526ed4727acb4faa3 /libarchive/archive_entry.c | |
parent | 1f759ffd2ca5e509f61f8e3be269944e274a5025 (diff) | |
download | libarchive-1939dfb1dbd3500c0e206f00a09e0395488e7995.tar.gz |
archive_entry.c: alphabetically sort FreeBSD/MacOS file flags in comment
Diffstat (limited to 'libarchive/archive_entry.c')
-rw-r--r-- | libarchive/archive_entry.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libarchive/archive_entry.c b/libarchive/archive_entry.c index ba38d068..28129d97 100644 --- a/libarchive/archive_entry.c +++ b/libarchive/archive_entry.c @@ -1634,22 +1634,22 @@ _archive_entry_acl_text_l(struct archive_entry *entry, int flags, /* * Supported file flags on FreeBSD and Mac OS: - * arch,archived SF_ARCHIVED - * nodump UF_NODUMP - * opaque UF_OPAQUE * sappnd,sappend SF_APPEND + * arch,archived SF_ARCHIVED * schg,schange,simmutable SF_IMMUTABLE - * sunlnk,sunlink SF_NOUNLINK + * sunlnk,sunlink SF_NOUNLINK (FreeBSD only) * uappnd,uappend UF_APPEND - * uchg,uchange,uimmutable UF_IMMUTABLE + * compressed UF_COMPRESSED (Mac OS only) * hidden,uhidden UF_HIDDEN + * uchg,uchange,uimmutable UF_IMMUTABLE + * nodump UF_NODUMP + * uunlnk,uunlink UF_NOUNLINK (FreeBSD only) * offline,uoffline UF_OFFLINE (FreeBSD only) + * opaque UF_OPAQUE * rdonly,urdonly,readonly UF_READONLY (FreeBSD only) - * sparse,usparse UF_SPARSE (FreeBSD only) - * system,usystem UF_SYSTEM (FreeBSD only) * reparse,ureparse UF_REPARSE (FreeBSD only) - * uunlnk,uunlink UF_NOUNLINK (FreeBSD only) - * compressed UF_COMPRESSED (Mac OS only) + * sparse,usparse UF_SPARSE (FreeBSD only) + * system,usystem UF_SYSTEM (FreeBSD only) * * See chflags(2) for more information * |