diff options
author | midipix <writeonce@midipix.org> | 2024-06-06 21:11:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-06-06 23:39:26 +0000 |
commit | 37f51391c8888c7f84e27ec6995fda5dd3af49c3 (patch) | |
tree | f9c296dc28aaffbb9e2df29c87e86c4b46fef4f8 /src/internal | |
parent | b8874b3e640e74ff287b64e969ce74aece65de10 (diff) | |
download | tpax-37f51391c8888c7f84e27ec6995fda5dd3af49c3.tar.bz2 tpax-37f51391c8888c7f84e27ec6995fda5dd3af49c3.tar.xz |
driver: implemented and integrated the -H (follow symlink args) cmdline option.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/tpax_driver_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/tpax_driver_impl.h b/src/internal/tpax_driver_impl.h index 1e898e9..a074535 100644 --- a/src/internal/tpax_driver_impl.h +++ b/src/internal/tpax_driver_impl.h @@ -28,6 +28,8 @@ #define TPAX_ITEM_EXPLICIT 0X1 #define TPAX_ITEM_IMPLICIT 0X2 +#define TPAX_ITEM_SYMLINK 0X4 +#define TPAX_ITEM_NAMEREF 0x8 extern const struct argv_option tpax_default_options[]; @@ -46,6 +48,7 @@ enum app_tags { TAG_STRICT_PATH, TAG_PURE_PATH, TAG_PRESERVE_ATIME, + TAG_PAX_SYMLINK_ARGS, }; struct tpax_dirent { |