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/driver | |
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/driver')
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c index e8ecb9e..71b4656 100644 --- a/src/driver/tpax_driver_ctx.c +++ b/src/driver/tpax_driver_ctx.c @@ -530,6 +530,10 @@ int tpax_lib_get_driver_ctx( cctx.drvflags |= TPAX_DRIVER_PRESERVE_ATIME; break; + case TAG_PAX_SYMLINK_ARGS: + cctx.drvflags |= TPAX_DRIVER_PAX_SYMLINK_ARGS; + break; + case TAG_STRICT_PATH: cctx.drvflags |= TPAX_DRIVER_STRICT_PATH_INPUT; break; |