diff options
author | midipix <writeonce@midipix.org> | 2024-06-06 21:52:55 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-06-07 00:58:32 +0000 |
commit | e50240012b56272abfd1ce2c873dc99e7a89631b (patch) | |
tree | aac34605a155ae24142049ec020d460e6f152ddf /src/driver | |
parent | 8034d053d2a29f7721066ff1190aa6814a300d40 (diff) | |
download | tpax-e50240012b56272abfd1ce2c873dc99e7a89631b.tar.bz2 tpax-e50240012b56272abfd1ce2c873dc99e7a89631b.tar.xz |
driver: implemented and integrated the -L (follow symlink items) cmdline option.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c index 71b4656..97eb776 100644 --- a/src/driver/tpax_driver_ctx.c +++ b/src/driver/tpax_driver_ctx.c @@ -534,6 +534,11 @@ int tpax_lib_get_driver_ctx( cctx.drvflags |= TPAX_DRIVER_PAX_SYMLINK_ARGS; break; + case TAG_PAX_SYMLINK_ITEMS: + cctx.drvflags |= TPAX_DRIVER_PAX_SYMLINK_ARGS; + cctx.drvflags |= TPAX_DRIVER_PAX_SYMLINK_ITEMS; + break; + case TAG_STRICT_PATH: cctx.drvflags |= TPAX_DRIVER_STRICT_PATH_INPUT; break; |