summaryrefslogtreecommitdiffstats
path: root/src/fsade.c
Commit message (Collapse)AuthorAgeFilesLines
* fsade: Implement ACL detection on IllumosTavian Barnes12 days1-11/+20
|
* config: Check for acl_get_{entry,tag_type}()Tavian Barnes12 days1-12/+20
|
* config: Check for extattr_{get,list}_{file,link}()Tavian Barnes12 days1-10/+52
| | | | This lets us implement -xattr on DragonFly BSD.
* config: Check for acl_is_trivial_np()Tavian Barnes2024-04-191-2/+2
|
* Rename config.h to prelude.hTavian Barnes2024-04-191-1/+1
|
* fsade: Add libselinux wrappersTavian Barnes2024-04-101-0/+33
|
* fsade: Mark bfs_acl_tag_type() as maybe_unusedTavian Barnes2024-01-171-0/+1
| | | | | It's not used on at least macOS, which doesn't have ACL_{USER,GROUP}_OBJ or ACL_OTHER.
* fsade: Fix ACL checks on DragonFly BSDTavian Barnes2024-01-031-9/+45
|
* config: New variadic attr(...) macroTavian Barnes2023-12-181-3/+3
|
* config: New attr_maybe_unused macroTavian Barnes2023-11-151-4/+3
|
* Formatting fixesTavian Barnes2023-09-271-3/+3
|
* dstring: New dchar typedef for dynamic stringsTavian Barnes2023-09-261-2/+2
|
* fsade: Make syscall support checks thread-safeTavian Barnes2023-06-121-6/+7
|
* fsade: Add missing #include "sanity.h"Tavian Barnes2023-05-251-0/+1
|
* sanity: Add wrappers for sanitizer interfacesTavian Barnes2023-05-251-5/+4
|
* config: s/BFS_COUNTOF/countof/Tavian Barnes2023-05-101-1/+1
|
* style: Don't use tabs to indent preprocessor directivesTavian Barnes2023-05-031-4/+4
|
* Replace license boilerplate with SPDX tagsTavian Barnes2023-01-251-15/+2
| | | | | | | And while I'm at it, remove years from copyright declarations. Link: https://spdx.dev/about/ Link: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/
* config: New BFS_COUNTOF macroTavian Barnes2022-12-071-2/+1
|
* bfstd: Rename from util and reorganize itTavian Barnes2022-11-061-1/+2
|
* util: Get rid of BFS_HAS_INCLUDE() wrapper for __has_include()Tavian Barnes2022-11-061-4/+4
| | | | | | | | | Since __has_include() needs special preprocessing rules (e.g. not expanding `linux` in `__has_include(<linux/stat.h>)`, macros that expand to __has_include() do not necessarily behave correctly. Instead, we have to directly test `#if __has_include(...)`. See https://bugs.llvm.org/show_bug.cgi?id=37990 for more details.
* util: Use fewer BFS_*() wrappers for feature testingTavian Barnes2022-11-061-1/+1
|
* Source / Include Folder (#88)トトも2022-04-161-0/+392
Moved Source Files Into `src` Folder