diff options
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c index d8e2de8..c27ce90 100644 --- a/src/driver/tpax_driver_ctx.c +++ b/src/driver/tpax_driver_ctx.c @@ -403,6 +403,14 @@ int tpax_get_driver_ctx( case TAG_NORECURSE: cctx.drvflags &= ~(uintptr_t)TPAX_DRIVER_DIR_MEMBER_RECURSE; break; + + case TAG_STRICT_PATH: + cctx.drvflags |= TPAX_DRIVER_STRICT_PATH_INPUT; + break; + + case TAG_PURE_PATH: + cctx.drvflags |= TPAX_DRIVER_PURE_PATH_OUTPUT; + break; } } else { operand = entry; |