summaryrefslogtreecommitdiffhomepage
path: root/src/driver
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-06-09 04:29:32 +0000
committermidipix <writeonce@midipix.org>2024-06-09 04:38:30 +0000
commit4275a94c9d0e8ab2dee4632b6bee32fd634f4460 (patch)
tree410c00282c054880e1590df15759f34920f5029f /src/driver
parentf9e2cb296c7939daf67133cfe5bc4843241a2346 (diff)
downloadtpax-4275a94c9d0e8ab2dee4632b6bee32fd634f4460.tar.bz2
tpax-4275a94c9d0e8ab2dee4632b6bee32fd634f4460.tar.xz
driver: implemented and integrated the -X (strict device id) cmdline option.
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/tpax_driver_ctx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c
index d2fec77..79518f0 100644
--- a/src/driver/tpax_driver_ctx.c
+++ b/src/driver/tpax_driver_ctx.c
@@ -544,6 +544,10 @@ int tpax_lib_get_driver_ctx(
cctx.drvflags |= TPAX_DRIVER_PAX_SYMLINK_ITEMS;
break;
+ case TAG_STRICT_DEVICE_ID:
+ cctx.drvflags |= TPAX_DRIVER_STRICT_DEVICE_ID;
+ break;
+
case TAG_STRICT_PATH:
cctx.drvflags |= TPAX_DRIVER_STRICT_PATH_INPUT;
break;