diff options
author | midipix <writeonce@midipix.org> | 2024-05-29 03:10:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-29 03:10:40 +0000 |
commit | 156e23cd69630cba8dee55eaafae5d33e40c30bc (patch) | |
tree | 484ea72e8cad040acc5282ef3f8dde40a7cb9742 /src/internal | |
parent | 1fd3f0230d2011bfe00b724d13517ca51f4e63bb (diff) | |
download | tpax-156e23cd69630cba8dee55eaafae5d33e40c30bc.tar.bz2 tpax-156e23cd69630cba8dee55eaafae5d33e40c30bc.tar.xz |
driver: implemented the -f (archive path) command-line argument.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/tpax_driver_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/internal/tpax_driver_impl.h b/src/internal/tpax_driver_impl.h index cd734b0..1333f25 100644 --- a/src/internal/tpax_driver_impl.h +++ b/src/internal/tpax_driver_impl.h @@ -38,6 +38,7 @@ enum app_tags { TAG_READ, TAG_WRITE, TAG_COPY, + TAG_FILE, TAG_FORMAT, TAG_BLKSIZE, TAG_RECURSE, @@ -65,6 +66,7 @@ struct tpax_dirent_buffer { }; struct tpax_driver_ctx_impl { + const char * file; struct tpax_common_ctx cctx; struct tpax_driver_ctx ctx; struct tpax_fd_ctx fdctx; |